<?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 Internal compiler error / catastrophic error in IVF11 and XE in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Internal-compiler-error-catastrophic-error-in-IVF11-and-XE/m-p/774729#M24408</link>
    <description>&lt;P&gt;Reproduced and narrowed down the test case the type definition mentionned above. The engineering tracking number is: DPD200178322. I will update this issue when a compiler which resolves it is available.&lt;/P&gt;&lt;P&gt;------&lt;/P&gt;&lt;P&gt;Wendy&lt;/P&gt;&lt;P&gt;&lt;A href="http://software.intel.com/en-us/forums/intel-visual-fortran-compiler-for-windows/announcement/241/"&gt;Attaching or including files in a post&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 27 Jan 2012 00:22:19 GMT</pubDate>
    <dc:creator>Wendy_Doerner__Intel</dc:creator>
    <dc:date>2012-01-27T00:22:19Z</dc:date>
    <item>
      <title>Internal compiler error / catastrophic error in IVF11 and XE</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Internal-compiler-error-catastrophic-error-in-IVF11-and-XE/m-p/774724#M24403</link>
      <description>&lt;P&gt;Hi Steve,&lt;BR /&gt;&lt;BR /&gt;I tried to alter lassytouton's source he posted earlier (&lt;A href="http://forum/280501/fortransocketclient.zipsoftware.intel.com/en-us/forums/showthread.php?t=71998&amp;amp;o=a&amp;amp;s=lr"&gt;http://forum/280501/fortransocketclient.zipsoftware.intel.com/en-us/forums/showthread.php?t=71998&amp;amp;o=a&amp;amp;s=lr&lt;/A&gt; and &lt;A href="https://forum/280501/fortransocketclient.zipgithub.com/lassytouton/LittleDemos/tree/master/Intel%20Visual%20FORTRAN%20TCP%20IP%20Sockets%20Based%20Client%20Server"&gt;https://forum/280501/fortransocketclient.zipgithub.com/lassytouton/LittleDemos/tree/master/Intel%20Visual%20FORTRAN%20TCP%20IP%20Sockets%20Based%20Client%20Server&lt;/A&gt;) . But then I get this:&lt;BR /&gt;&lt;BR /&gt;catastrophic error: **Internal compiler error: internal abort** Please report this error along with the circumstances in which it occurred in a Software Problem Report. Note: File and line given may not be explicit cause of this error.&lt;BR /&gt;&lt;BR /&gt;I attached the solution. This happens on both IVF11.1 (which I use) and XE12.1 (I think he got the latest version). We use Visual Studio 2008 on a Windows7 x64 machine.&lt;BR /&gt;&lt;BR /&gt;Markus&lt;/P&gt;</description>
      <pubDate>Fri, 16 Dec 2011 09:52:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Internal-compiler-error-catastrophic-error-in-IVF11-and-XE/m-p/774724#M24403</guid>
      <dc:creator>onkelhotte</dc:creator>
      <dc:date>2011-12-16T09:52:37Z</dc:date>
    </item>
    <item>
      <title>Internal compiler error / catastrophic error in IVF11 and XE</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Internal-compiler-error-catastrophic-error-in-IVF11-and-XE/m-p/774725#M24404</link>
      <description>Markus,&lt;BR /&gt;&lt;BR /&gt;Steve is not here today, but I will take an look and try to reproduce the internal compiler error and see if we can find a workaround. Will post details back to this thread.&lt;BR /&gt;&lt;BR /&gt;&lt;P&gt;------&lt;/P&gt;&lt;P&gt;Wendy&lt;/P&gt;&lt;P&gt;&lt;A href="http://software.intel.com/en-us/forums/intel-visual-fortran-compiler-for-windows/announcement/241/"&gt;Attaching or including files in a post&lt;/A&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Dec 2011 18:22:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Internal-compiler-error-catastrophic-error-in-IVF11-and-XE/m-p/774725#M24404</guid>
      <dc:creator>Wendy_Doerner__Intel</dc:creator>
      <dc:date>2011-12-16T18:22:24Z</dc:date>
    </item>
    <item>
      <title>Internal compiler error / catastrophic error in IVF11 and XE</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Internal-compiler-error-catastrophic-error-in-IVF11-and-XE/m-p/774726#M24405</link>
      <description>&lt;PRE&gt;
Hi,


The following declaration in your code is incorrect. The MAP...END MAP for the CHARACTER buffer should be *INSIDE* the UNION.



    TYPE T_REAL4ARRAY
        SEQUENCE
            UNION
                MAP
                    REAL(kind=4) Temp2D(10,2)
                END MAP
            END UNION
            MAP
                CHARACTER buffer
            END MAP
    END TYPE T_REAL4ARRAY


It should read


    TYPE T_REAL4ARRAY
        SEQUENCE
            UNION
                MAP
                    REAL(kind=4) Temp2D(10,2)
                END MAP
                MAP
                    CHARACTER buffer
                END MAP
            END UNION
    END TYPE T_REAL4ARRAY
&lt;/PRE&gt;</description>
      <pubDate>Sun, 18 Dec 2011 00:51:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Internal-compiler-error-catastrophic-error-in-IVF11-and-XE/m-p/774726#M24405</guid>
      <dc:creator>lassytouton</dc:creator>
      <dc:date>2011-12-18T00:51:25Z</dc:date>
    </item>
    <item>
      <title>Internal compiler error / catastrophic error in IVF11 and XE</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Internal-compiler-error-catastrophic-error-in-IVF11-and-XE/m-p/774727#M24406</link>
      <description>Youre right, that produces the error...&lt;BR /&gt;&lt;BR /&gt;But the compiler should notice that, shouldnt it?</description>
      <pubDate>Mon, 19 Dec 2011 08:05:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Internal-compiler-error-catastrophic-error-in-IVF11-and-XE/m-p/774727#M24406</guid>
      <dc:creator>onkelhotte</dc:creator>
      <dc:date>2011-12-19T08:05:56Z</dc:date>
    </item>
    <item>
      <title>Internal compiler error / catastrophic error in IVF11 and XE</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Internal-compiler-error-catastrophic-error-in-IVF11-and-XE/m-p/774728#M24407</link>
      <description>Yes an internal compiler error is always a compiler bug. Thanks for helping to narrow down the location in the code where the compiler is failing to give a proper error message. Sounds like you have a workaround for it.&lt;BR /&gt;&lt;BR /&gt;I will get a test case into engineering so that we can fix it and give an error message. I will update this thread with the engineering tracking number and notification when it is fixed.&lt;BR /&gt;&lt;BR /&gt;&lt;P&gt;------&lt;/P&gt;&lt;P&gt;Wendy&lt;/P&gt;&lt;P&gt;&lt;A href="http://software.intel.com/en-us/forums/intel-visual-fortran-compiler-for-windows/announcement/241/"&gt;Attaching or including files in a post&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2011 16:38:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Internal-compiler-error-catastrophic-error-in-IVF11-and-XE/m-p/774728#M24407</guid>
      <dc:creator>Wendy_Doerner__Intel</dc:creator>
      <dc:date>2011-12-19T16:38:43Z</dc:date>
    </item>
    <item>
      <title>Internal compiler error / catastrophic error in IVF11 and XE</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Internal-compiler-error-catastrophic-error-in-IVF11-and-XE/m-p/774729#M24408</link>
      <description>&lt;P&gt;Reproduced and narrowed down the test case the type definition mentionned above. The engineering tracking number is: DPD200178322. I will update this issue when a compiler which resolves it is available.&lt;/P&gt;&lt;P&gt;------&lt;/P&gt;&lt;P&gt;Wendy&lt;/P&gt;&lt;P&gt;&lt;A href="http://software.intel.com/en-us/forums/intel-visual-fortran-compiler-for-windows/announcement/241/"&gt;Attaching or including files in a post&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jan 2012 00:22:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Internal-compiler-error-catastrophic-error-in-IVF11-and-XE/m-p/774729#M24408</guid>
      <dc:creator>Wendy_Doerner__Intel</dc:creator>
      <dc:date>2012-01-27T00:22:19Z</dc:date>
    </item>
    <item>
      <title>With our 13.0 compiler we no</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Internal-compiler-error-catastrophic-error-in-IVF11-and-XE/m-p/774730#M24409</link>
      <description>With our 13.0 compiler we no longer give an internal error, but instead report the user error, see below.

Wendy Doerner
Intel Developer Support

1&amp;gt;------ Build started: Project: FortranSocketClient, Configuration: Debug Win32 ------
1&amp;gt;Compiling with Intel(R) Visual Fortran Compiler XE 13.0.0.079 [IA-32]...
1&amp;gt;Reduced_Client.F90
1&amp;gt;C:\Users\wadoerne\Documents\Windows Forum\101873\FortranSocketClient\FortranSocketClient\FortranSocketClient\Reduced_Client.F90(36): error #6590: This statement is not permitted as a statement within a derived-type-def
1&amp;gt;C:\Users\wadoerne\Documents\Windows Forum\101873\FortranSocketClient\FortranSocketClient\FortranSocketClient\Reduced_Client.F90(70): error #6405: The same named entity from different modules and/or program units cannot be referenced.   [SEND]
1&amp;gt;C:\Users\wadoerne\Documents\Windows Forum\101873\FortranSocketClient\FortranSocketClient\FortranSocketClient\Reduced_Client.F90(72): error #6405: The same named entity from different modules and/or program units cannot be referenced.   [WSAGETLASTERROR]
1&amp;gt;compilation aborted for C:\Users\wadoerne\Documents\Windows Forum\101873\FortranSocketClient\FortranSocketClient\FortranSocketClient\Reduced_Client.F90 (code 1)
1&amp;gt;
1&amp;gt;Build log written to  "file://C:\Users\wadoerne\Documents\Windows Forum\101873\FortranSocketClient\FortranSocketClient\FortranSocketClient\Debug\BuildLog.htm"
1&amp;gt;FortranSocketClient - 4 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========</description>
      <pubDate>Mon, 08 Oct 2012 22:16:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Internal-compiler-error-catastrophic-error-in-IVF11-and-XE/m-p/774730#M24409</guid>
      <dc:creator>Wendy_Doerner__Intel</dc:creator>
      <dc:date>2012-10-08T22:16:54Z</dc:date>
    </item>
  </channel>
</rss>

