From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 78053 invoked by alias); 23 Oct 2015 09:50:06 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 77996 invoked by uid 48); 23 Oct 2015 09:50:03 -0000 From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libgomp/68063] FAIL: libgomp.c++/member-2.C execution test Date: Fri, 23 Oct 2015 09:50: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: 6.0 X-Bugzilla-Keywords: 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: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2015-10/txt/msg01935.txt.bz2 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68063 --- Comment #2 from Jakub Jelinek --- Is that the #pragma omp parallel private (f) { f = false; #pragma omp single #pragma omp taskloop lastprivate (a, T::t, b, n) part? That indeed sounds like a data race, there should be private (r) or private (R::r) clause most likely on the taskloop.