<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Nested SELECT TYPE and SELECT RANK constructs. in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Nested-SELECT-TYPE-and-SELECT-RANK-constructs/m-p/1496296#M166867</link>
    <description>&lt;P&gt;we will get a bug report open.&amp;nbsp; Thanks for sending this to us!&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 15 Jun 2023 21:54:20 GMT</pubDate>
    <dc:creator>Ron_Green</dc:creator>
    <dc:date>2023-06-15T21:54:20Z</dc:date>
    <item>
      <title>Nested SELECT TYPE and SELECT RANK constructs.</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Nested-SELECT-TYPE-and-SELECT-RANK-constructs/m-p/1496224#M166865</link>
      <description>&lt;P&gt;I get an access violation error with ifort 2021.9.0 ... and an ICE with ifx 2023.1.0 with the following code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="fortran"&gt;MODULE M
IMPLICIT NONE (TYPE, EXTERNAL)
CONTAINS

    SUBROUTINE S(X)
    IMPLICIT NONE (TYPE, EXTERNAL)
    CLASS(*) :: X(..)
    SELECT RANK (X)
        RANK (0)
            SELECT TYPE (XX =&amp;gt; X)
                TYPE IS (INTEGER)
                    WRITE(*, *) 'X is of type INTEGER.'
            END SELECT 
    END SELECT
    END SUBROUTINE S

END MODULE M

PROGRAM P
USE M
IMPLICIT NONE (TYPE, EXTERNAL)
INTEGER :: I
CALL S(I)
END PROGRAM P&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Either there is a missing check in the compiler to prevent those nested constructs, or this is a legal code but there is a compiler bug.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2023 18:22:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Nested-SELECT-TYPE-and-SELECT-RANK-constructs/m-p/1496224#M166865</guid>
      <dc:creator>OP1</dc:creator>
      <dc:date>2023-06-15T18:22:31Z</dc:date>
    </item>
    <item>
      <title>Re: Nested SELECT TYPE and SELECT RANK constructs.</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Nested-SELECT-TYPE-and-SELECT-RANK-constructs/m-p/1496257#M166866</link>
      <description>&lt;P&gt;The code appears conformant, it looks like a bug in IFORT.&lt;/P&gt;&lt;P&gt;Intel team: FYI, IFX encounters ICE with this.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2023 19:57:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Nested-SELECT-TYPE-and-SELECT-RANK-constructs/m-p/1496257#M166866</guid>
      <dc:creator>FortranFan</dc:creator>
      <dc:date>2023-06-15T19:57:58Z</dc:date>
    </item>
    <item>
      <title>Re: Nested SELECT TYPE and SELECT RANK constructs.</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Nested-SELECT-TYPE-and-SELECT-RANK-constructs/m-p/1496296#M166867</link>
      <description>&lt;P&gt;we will get a bug report open.&amp;nbsp; Thanks for sending this to us!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2023 21:54:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Nested-SELECT-TYPE-and-SELECT-RANK-constructs/m-p/1496296#M166867</guid>
      <dc:creator>Ron_Green</dc:creator>
      <dc:date>2023-06-15T21:54:20Z</dc:date>
    </item>
    <item>
      <title>Re:Nested SELECT TYPE and SELECT RANK constructs.</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Nested-SELECT-TYPE-and-SELECT-RANK-constructs/m-p/1497573#M166905</link>
      <description>&lt;P&gt;bug ID is CMPLRLLVM-48814&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Jun 2023 22:12:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Nested-SELECT-TYPE-and-SELECT-RANK-constructs/m-p/1497573#M166905</guid>
      <dc:creator>Ron_Green</dc:creator>
      <dc:date>2023-06-20T22:12:23Z</dc:date>
    </item>
    <item>
      <title>Re: Nested SELECT TYPE and SELECT RANK constructs.</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Nested-SELECT-TYPE-and-SELECT-RANK-constructs/m-p/1586485#M171629</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/88548"&gt;@OP1&lt;/a&gt;&amp;nbsp;this bug is fixed in the 2024.1.0 compiler.&amp;nbsp; I have just confirmed the fix in the released compiler.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2024 23:30:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Nested-SELECT-TYPE-and-SELECT-RANK-constructs/m-p/1586485#M171629</guid>
      <dc:creator>Ron_Green</dc:creator>
      <dc:date>2024-04-04T23:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: Nested SELECT TYPE and SELECT RANK constructs.</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Nested-SELECT-TYPE-and-SELECT-RANK-constructs/m-p/1604040#M172447</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;For Mac Os users who can't benefit from new releases (ifort no longer maintained...), does anyone have a workaround for this problem?&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2024 08:46:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Nested-SELECT-TYPE-and-SELECT-RANK-constructs/m-p/1604040#M172447</guid>
      <dc:creator>riad_h_1</dc:creator>
      <dc:date>2024-06-05T08:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: Nested SELECT TYPE and SELECT RANK constructs.</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Nested-SELECT-TYPE-and-SELECT-RANK-constructs/m-p/1628349#M173541</link>
      <description>&lt;P&gt;&lt;SPAN class="sub_section_element_selectors"&gt;This issue has been fixed in the recently released Intel Fortran Compiler, available for download as part of&amp;nbsp;&lt;/SPAN&gt;&lt;A class="sub_section_element_selectors" href="https://software.intel.com/content/www/us/en/develop/tools/oneapi/hpc-toolkit.html" target="_self" rel="nofollow noopener noreferrer"&gt;Intel HPC Toolkit 2024.2.1&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2024 20:06:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Nested-SELECT-TYPE-and-SELECT-RANK-constructs/m-p/1628349#M173541</guid>
      <dc:creator>Devorah_H_Intel</dc:creator>
      <dc:date>2024-09-03T20:06:16Z</dc:date>
    </item>
  </channel>
</rss>

