From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28334 invoked by alias); 8 Mar 2012 14:05:26 -0000 Received: (qmail 28326 invoked by uid 22791); 8 Mar 2012 14:05:24 -0000 X-SWARE-Spam-Status: No, hits=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 08 Mar 2012 14:05:10 +0000 From: "kaladhorn at me dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/52531] New: Compilation fails with polymorphic dummy argument and OpenMP Date: Thu, 08 Mar 2012 14:05: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-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: kaladhorn at me dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: Message-ID: X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2012-03/txt/msg00680.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D52531 Bug #: 52531 Summary: Compilation fails with polymorphic dummy argument and OpenMP Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: fortran AssignedTo: unassigned@gcc.gnu.org ReportedBy: kaladhorn@me.com The following code does not compile: -- module test_mod type, public :: test_type end type contains subroutine foo(bar) type(test_type) :: bar !$omp parallel default(none) shared(bar) ! Compiles if one removes default(none) call question(bar) !$omp end parallel end subroutine subroutine question(var) class(test_type), intent(in) :: var ! Compiles if one replaces class by type end subroutine end module -- The error message is: =E2=80=98__vtab_test_mod_Test_type=E2=80=99 not specified in enclosing para= llel This was reproduced with gfortran 4.6 (gcc version 4.6.3 (GCC) ) and 4.7 (g= cc version 4.7.0 20120121 (experimental) (GCC) ) on x86_64-unknown-linux-gnu .