<?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: [Regression Intel Fortran 11.1] Bug report in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Regression-Intel-Fortran-11-1-Bug-report/m-p/757195#M12682</link>
    <description>I have reported the problem you described in the initial post as issue DPD200138085. Can you provide a test case for the other problem(s) you described?&lt;BR /&gt;</description>
    <pubDate>Mon, 20 Jul 2009 13:53:32 GMT</pubDate>
    <dc:creator>Steven_L_Intel1</dc:creator>
    <dc:date>2009-07-20T13:53:32Z</dc:date>
    <item>
      <title>[Regression Intel Fortran 11.1] Bug report</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Regression-Intel-Fortran-11-1-Bug-report/m-p/757191#M12678</link>
      <description>The following part of our code does compile with ifort 11.1 (both MAC OS X and Linux) when compiling just with -c, but not with the -g -c flags. Also when compiling with -c only the produced module and object files seems to be incorrect, because our code crashed further on when calling the compiled module expressions.o.&lt;BR /&gt;The error when compiling with -g -c is:&lt;BR /&gt;ifort111: error #10105: /opt/ifort/intel/Compiler/11.1/038/bin/ia32/fortcom: core dumped&lt;BR /&gt;ifort111: error #10106: Fatal error in /opt/ifort/intel/Compiler/11.1/038/bin/ia32/fortcom, terminated by unknown signal(139)&lt;BR /&gt;compilation aborted for expressions.f90 (code 1)&lt;BR /&gt;&lt;BR /&gt;Here is the code:&lt;BR /&gt;*****&lt;BR /&gt;module expressions&lt;BR /&gt;&lt;BR /&gt; implicit none&lt;BR /&gt; private&lt;BR /&gt;&lt;BR /&gt; type :: prt_t&lt;BR /&gt; private&lt;BR /&gt; integer :: type = 0&lt;BR /&gt; end type prt_t&lt;BR /&gt;&lt;BR /&gt; type :: var_entry_t&lt;BR /&gt; private&lt;BR /&gt; integer, pointer :: ival =&amp;gt; null ()&lt;BR /&gt; procedure(obs_binary_int), nopass, pointer :: obs2_int =&amp;gt; null ()&lt;BR /&gt; type(var_entry_t), pointer :: next =&amp;gt; null ()&lt;BR /&gt; end type var_entry_t&lt;BR /&gt;&lt;BR /&gt; type :: var_list_t&lt;BR /&gt; private&lt;BR /&gt; type(var_entry_t), pointer :: first =&amp;gt; null ()&lt;BR /&gt; end type var_list_t&lt;BR /&gt;&lt;BR /&gt; abstract interface&lt;BR /&gt; function obs_binary_int (prt1, prt2) result (ival)&lt;BR /&gt; import&lt;BR /&gt; integer :: ival&lt;BR /&gt; type(prt_t), intent(in) :: prt1, prt2&lt;BR /&gt; end function obs_binary_int&lt;BR /&gt; end interface&lt;BR /&gt;&lt;BR /&gt;contains&lt;BR /&gt;&lt;BR /&gt; recursive function var_list_get_var_ptr (var_list) result (var)&lt;BR /&gt; type(var_entry_t), pointer :: var&lt;BR /&gt; type(var_list_t), intent(in), target :: var_list&lt;BR /&gt; var =&amp;gt; var_list%first&lt;BR /&gt; end function var_list_get_var_ptr&lt;BR /&gt;&lt;BR /&gt;end module expressions&lt;BR /&gt;*****</description>
      <pubDate>Sat, 18 Jul 2009 17:59:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Regression-Intel-Fortran-11-1-Bug-report/m-p/757191#M12678</guid>
      <dc:creator>jr_reuter</dc:creator>
      <dc:date>2009-07-18T17:59:35Z</dc:date>
    </item>
    <item>
      <title>Re: [Regression Intel Fortran 11.1] Bug report</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Regression-Intel-Fortran-11-1-Bug-report/m-p/757192#M12679</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
I see this week's compiler failing when either debug symbols are requested or with the diag-enable sc option. So it does look like a good case for a formal problem report.&lt;BR /&gt;</description>
      <pubDate>Sat, 18 Jul 2009 19:00:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Regression-Intel-Fortran-11-1-Bug-report/m-p/757192#M12679</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2009-07-18T19:00:53Z</dc:date>
    </item>
    <item>
      <title>Re: [Regression Intel Fortran 11.1] Bug report</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Regression-Intel-Fortran-11-1-Bug-report/m-p/757193#M12680</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/367365"&gt;tim18&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt; I see this week's compiler failing when either debug symbols are requested or with the diag-enable sc option. So it does look like a good case for a formal problem report.&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
In the meantime, I can add that when I comment out the -g flag and compile the expressions.f90 module without, then the next module crashes with the following error message:&lt;BR /&gt;*****&lt;BR /&gt;bin/sh ../../libtool --mode=compile ifort -I../aux -I../vamp -g -c -o models.lo models.f90&lt;BR /&gt;libtool: compile: ifort -I../aux -I../vamp -g -c models.f90 -o .libs/models.o&lt;BR /&gt;fit_lookup: Line_seq_number 0x0 was not found&lt;BR /&gt;: catastrophic error: **Internal compiler error: segmentation violation signal raised** 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;Again compiling without the -g flag goes thru. A little later however I encounter the following error message:&lt;BR /&gt;*****&lt;BR /&gt;/bin/sh ../../libtool --mode=compile ifort -I../aux -I../vamp -g -c -o quantum_numbers.lo quantum_numbers.f90&lt;BR /&gt;libtool: compile: ifort -I../aux -I../vamp -g -c quantum_numbers.f90 -o .libs/quantum_numbers.o&lt;BR /&gt;: catastrophic error: **Internal compiler error: segmentation violation signal raised** 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;which is NOT resolved when compiling without -g. &lt;BR /&gt;This error occurs even for an empty file quantum_numbers.f90 with only a "use flavors" statement, so to me it seems that even when compiling without -g erroneous .o and .mod files are produced.&lt;BR /&gt;&lt;BR /&gt;I'll try to isolate the problem.&lt;BR /&gt;&lt;BR /&gt;BTW, how do I set up such a formal report?&lt;BR /&gt;</description>
      <pubDate>Sun, 19 Jul 2009 20:50:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Regression-Intel-Fortran-11-1-Bug-report/m-p/757193#M12680</guid>
      <dc:creator>jr_reuter</dc:creator>
      <dc:date>2009-07-19T20:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: [Regression Intel Fortran 11.1] Bug report</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Regression-Intel-Fortran-11-1-Bug-report/m-p/757194#M12681</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
You don't need to do that - reporting it here is sufficient. I'll pass this on to the developers.&lt;BR /&gt;</description>
      <pubDate>Mon, 20 Jul 2009 00:34:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Regression-Intel-Fortran-11-1-Bug-report/m-p/757194#M12681</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2009-07-20T00:34:42Z</dc:date>
    </item>
    <item>
      <title>Re: [Regression Intel Fortran 11.1] Bug report</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Regression-Intel-Fortran-11-1-Bug-report/m-p/757195#M12682</link>
      <description>I have reported the problem you described in the initial post as issue DPD200138085. Can you provide a test case for the other problem(s) you described?&lt;BR /&gt;</description>
      <pubDate>Mon, 20 Jul 2009 13:53:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Regression-Intel-Fortran-11-1-Bug-report/m-p/757195#M12682</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2009-07-20T13:53:32Z</dc:date>
    </item>
    <item>
      <title>Re: [Regression Intel Fortran 11.1] Bug report</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Regression-Intel-Fortran-11-1-Bug-report/m-p/757196#M12683</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
This problem was fixed in Update 2.&lt;BR /&gt;</description>
      <pubDate>Mon, 12 Oct 2009 20:35:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Regression-Intel-Fortran-11-1-Bug-report/m-p/757196#M12683</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2009-10-12T20:35:58Z</dc:date>
    </item>
  </channel>
</rss>

