<?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 Ok thanks, I'm looking in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053946#M115899</link>
    <description>&lt;P&gt;Ok thanks, I'm looking forward for it&lt;/P&gt;</description>
    <pubDate>Wed, 13 May 2015 16:32:36 GMT</pubDate>
    <dc:creator>Alexandre_P_</dc:creator>
    <dc:date>2015-05-13T16:32:36Z</dc:date>
    <item>
      <title>Is this a bug in ifort ?</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053933#M115886</link>
      <description>&lt;P&gt;I think i'm observing a bug in ifort.&lt;BR /&gt;
	&amp;nbsp;&lt;BR /&gt;
	$&amp;gt; ifort test.f90 -O1 -g&amp;nbsp; &amp;amp;&amp;amp; ./a.out&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; 6 0 0 0 0 0 0&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; 1 0&lt;BR /&gt;
	$&amp;gt; ifort test.f90 -O0 -g&amp;nbsp; &amp;amp;&amp;amp; ./a.out&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; 6 0 0 0 0 0 0&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; 6 0 0 0 0 0 0&lt;/P&gt;

&lt;P&gt;The second result is the good one, and I see no reason for the difference.&lt;/P&gt;

&lt;P&gt;file test.f90 :&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;   module useless_module
    ! this module is useless
    ! remove it and the bug disappear
      implicit none
    ! those variables are useless
    ! they will never be touched
    ! remove one of them and the bug disappear
    ! rename one of them and the bug disappear
      integer,allocatable,dimension(:) :: num_dr , &amp;amp;
                                          num_cf , &amp;amp;
                                          num_cfi, &amp;amp;
                                          num_num, &amp;amp;
                                          num_typ
    end module useless_module
    
    program test_program
      implicit none
    ! those variables are useless
    ! they will never be touched
    ! remove one of them and the bug disappear
      integer,allocatable,dimension(:) :: a1, b1, c1, d1, &amp;amp;
                                          e1, g1, f1, h1, &amp;amp;
                                          i1, j1, k1
    
      call routine_1(a1,b1,c1,d1,e1,f1,g1,h1,i1,j1,k1)
    contains
    
      subroutine routine_1(a3,b3,c3,d3,e3,f3,num_cf,num_dr, &amp;amp;
                           num_typ,num_num,num_cfi)
        implicit none
    ! those arguments are useless
    ! they will never be touched
    ! remove one of them and the bug disappear
          integer,allocatable,dimension(:)     :: a3,b3,c3,d3,e3,f3
    ! those arguments are useless
    ! they will never be touched
    ! remove one of them and the bug disappear
    ! rename one of them and the bug disappear
          integer,allocatable,dimension(:)     :: num_dr , &amp;amp;
                                                  num_cf , &amp;amp;
                                                  num_cfi, &amp;amp;
                                                  num_num, &amp;amp;
                                                  num_typ
    ! this variable is useless
    ! it will never be touched
    ! remove it and the bug disappear
          integer,allocatable,dimension(:)     :: g3
    ! those variables are actualy used !
          integer,allocatable,dimension(:,:,:) :: h3,i3,j3
    
          allocate(h3(1,1,1),i3(1,1,1),j3(1,1,1))
    
          call routine_2(g3,i3,j3)
    
    ! here, normaly, size(i3)=6 and i3= 0 0 0 0 0 0
    ! But that is not what is printed : BUG ?
    ! printing size(i3) AND i3 is mandatory to make the bug happen
          write(*,'(7i2)') size(i3),i3
          deallocate(h3,i3,j3)
      end subroutine routine_1
    
      subroutine routine_2(a2,b2,c2)
        use useless_module
        implicit none
          integer,allocatable,dimension(:)     :: a2,d2,e2,f2,g2
          integer,allocatable,dimension(:,:,:) :: b2, c2
          integer                              :: j2
    
    ! j2 have to be be a variable
          j2=1
    ! allocate and deallocate some array
    ! not doing that will make the bug desappear
          allocate  (d2(j2),e2(1),f2(1),g2(1))
          deallocate(d2   ,e2    ,f2   ,g2)
    
          call reallocate(  c2,3,2,1)
          call reallocate(  b2,3,2,1) ;   b2=0
    
    ! here, we have size(b2)=6 and b2= 0 0 0 0 0 0
    ! printing size(b2) AND b2 is mandatory to make the bug happen
          write(*,'(7i2)') size(b2),b2
      end subroutine routine_2
    
      subroutine reallocate(a4,b4,c4,d4)
        implicit none
        integer,allocatable,dimension(:,:,:) :: a4
        integer                              :: b4,c4,d4
    
        deallocate(a4) ; allocate(a4(b4,c4,d4))
        
      end subroutine reallocate
    
    end program test_program&lt;/PRE&gt;

&lt;P&gt;As you can see, I'm doing nothin fancy.&lt;BR /&gt;
	I tried to reduce the code a much as i could&lt;BR /&gt;
	I tried on three computer under linux (ubuntu and archlinux) with three version of ifort (15.0.0 20140723, 15.0.2 20150121 and 14.0.0 20130728)&lt;BR /&gt;
	I always see the same thing.&lt;/P&gt;

&lt;P&gt;I don't see it with gfortran (4.8.2 or 5.1.0)&lt;/P&gt;

&lt;P&gt;It seems big, and I'm sure I'm making a mistake, but I don't see it.&lt;/P&gt;

&lt;P&gt;Any help will be appreciated&lt;/P&gt;

&lt;P&gt;remark : I have also posted this question &lt;A href="http://stackoverflow.com/questions/30051232/possible-bug-in-ifort-2015"&gt;here.&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2015 12:25:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053933#M115886</guid>
      <dc:creator>Alexandre_P_</dc:creator>
      <dc:date>2015-05-05T12:25:51Z</dc:date>
    </item>
    <item>
      <title>Yes, this is indeed a bug in</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053934#M115887</link>
      <description>&lt;P&gt;Yes, this is indeed a bug in ifort. Escalated as issue&amp;nbsp;DPD200369981. Thanks for the example and for pointing out what can make the problem disappear. I will let you know what we find.&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2015 15:39:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053934#M115887</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2015-05-05T15:39:54Z</dc:date>
    </item>
    <item>
      <title>Thank you,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053935#M115888</link>
      <description>&lt;P&gt;&lt;SPAN class="comment-copy"&gt;Thank you,&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN class="comment-copy"&gt;I'm looking forward for a quick fix, because while the bug is very easy to workaround on the test case,&lt;/SPAN&gt;&lt;BR /&gt;
	&lt;SPAN class="comment-copy"&gt;on my real life code, I haven't found a workaround yet.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2015 16:54:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053935#M115888</guid>
      <dc:creator>Alexandre_P_</dc:creator>
      <dc:date>2015-05-05T16:54:19Z</dc:date>
    </item>
    <item>
      <title>Does not setting -g avoid the</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053936#M115889</link>
      <description>&lt;P&gt;Does not setting -g avoid the problem for you? (I understand that it might introduce other issues!) I doubt there will be a "quick" fix - I am hoping that it will get fixed for the 16.0 release, but these things sometimes take time.&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2015 17:41:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053936#M115889</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2015-05-05T17:41:27Z</dc:date>
    </item>
    <item>
      <title>Does not setting -g avoid the</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053937#M115890</link>
      <description>&lt;DIV class="forum-post-content"&gt;
	&lt;DIV class="field field-name-comment-body field-type-text-long field-label-hidden"&gt;
		&lt;DIV class="field-items"&gt;
			&lt;DIV class="field-item even"&gt;
				&lt;BLOCKQUOTE&gt;
					&lt;P&gt;Does not setting -g avoid the problem for you?&lt;/P&gt;
				&lt;/BLOCKQUOTE&gt;

				&lt;P&gt;Unfortunately no, in fact i tried everything i could think of to avoid the issue&lt;/P&gt;

				&lt;UL&gt;
					&lt;LI&gt;play with compile flags (with and without each one of those :-O2 -O3 -g -traceback -static -xHost)&lt;/LI&gt;
					&lt;LI&gt;use "only" keyword on all "use" statement in order to limit scope issues&lt;/LI&gt;
					&lt;LI&gt;put the content of the program in a separate subroutine, again to avoid scope issues&lt;/LI&gt;
				&lt;/UL&gt;

				&lt;P&gt;But without success yet, I can continue to blindly modify random things in my code (9 000 lines), but it may be long.&lt;/P&gt;

				&lt;BLOCKQUOTE&gt;
					&lt;P&gt;I doubt there will be a "quick" fix - I am hoping that it will get fixed for the 16.0 release, but these things sometimes take time.&lt;/P&gt;
				&lt;/BLOCKQUOTE&gt;

				&lt;P&gt;I understand that, in fact what i meant was that I'm hoping for help on how to workaround this.&lt;/P&gt;

				&lt;P&gt;The fact is that i got time on a supercomputer to benchmark my code on many cores, and it will be very sad if I'm limited to -O0.&lt;/P&gt;
			&lt;/DIV&gt;
		&lt;/DIV&gt;
	&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 05 May 2015 18:02:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053937#M115890</guid>
      <dc:creator>Alexandre_P_</dc:creator>
      <dc:date>2015-05-05T18:02:00Z</dc:date>
    </item>
    <item>
      <title>Quote:Alexandre P. wrote:</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053938#M115891</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Alexandre P. wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;Does not setting -g avoid the problem for you?&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;Unfortunately no, in fact i tried everything i could think of to avoid the issue&lt;/P&gt;

&lt;UL&gt;
	&lt;LI&gt;play with compile flags (with and without each one of those :-O2 -O3 -g -traceback -static -xHost)&lt;/LI&gt;
	&lt;LI&gt;use "only" keyword on all "use" statement in order to limit scope issues&lt;/LI&gt;
	&lt;LI&gt;put the content of the program in a separate subroutine, again to avoid scope issues&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;But without success yet, I can continue to blindly modify random things in my code (9 000 lines), but it may be long.&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;I doubt there will be a "quick" fix - I am hoping that it will get fixed for the 16.0 release, but these things sometimes take time.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;I understand that, in fact what i meant was that I'm hoping for help on how to workaround this.&lt;/P&gt;

&lt;P&gt;The fact is that i got time on a supercomputer to benchmark my code on many cores, and it will be very sad if I'm limited to -O0.&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Does the structure in your reproducer and the name(s) and comments therein really reflect your actual code? &amp;nbsp;If yes, what happens if you remove your "useless_module" and any references to it? &amp;nbsp; Also, what happens if you replace "contained" procedures from your main program with module procedures? &amp;nbsp;If you really have "useless" stuff in your code, perhaps your best bet will be to "clean up" code and retry, especially since you're making a significant investment already to procure supercomputer time.&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2015 18:58:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053938#M115891</guid>
      <dc:creator>FortranFan</dc:creator>
      <dc:date>2015-05-05T18:58:43Z</dc:date>
    </item>
    <item>
      <title>Does the structure in your</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053939#M115892</link>
      <description>&lt;BLOCKQUOTE&gt;
	&lt;P&gt;Does the structure in your reproducer and the name(s) and comments therein really reflect your actual code?&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;Not really, as I said, I tried to make the test case as small and clear as possible.&lt;BR /&gt;
	Posting my 9000 lines length code seemed a bad idea.&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;&amp;nbsp;If yes, what happens if you remove your "useless_module" and any references to it?&lt;/P&gt;

	&lt;P&gt;&amp;nbsp;If you really have "useless" stuff in your code, perhaps your best bet will be to "clean up" code and retry, especially since you're making a significant investment already to procure supercomputer time.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;In the actual code there is no useless things (at least not i'm aware of). Things became useless when I tried to reduce to the smalest test case&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;Also, what happens if you replace "contained" procedures from your main program with module procedures?&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;That's what I was trying before ending my day of work. I will tell you tomorrow.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2015 19:08:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053939#M115892</guid>
      <dc:creator>Alexandre_P_</dc:creator>
      <dc:date>2015-05-05T19:08:18Z</dc:date>
    </item>
    <item>
      <title>FWIW, the code in the</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053940#M115893</link>
      <description>&lt;P&gt;FWIW, the code in the original post works as expected on &lt;STRONG&gt;Windows &lt;/STRONG&gt;with Intel Fortran 15.0, update 2 as well as 16.0 beta.&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2015 19:09:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053940#M115893</guid>
      <dc:creator>FortranFan</dc:creator>
      <dc:date>2015-05-05T19:09:17Z</dc:date>
    </item>
    <item>
      <title>Quote:Alexandre P. wrote:</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053941#M115894</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Alexandre P. wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; ..&lt;/P&gt;

&lt;P&gt;In the actual code there is no useless things (at least not i'm aware of). Things became useless when I tried to reduce to the smalest test case&lt;/P&gt;

&lt;P&gt;&amp;nbsp;..&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Well, in that case you can' t be sure the posted code is indeed a true reproducer of the problem in your actual code.&lt;/P&gt;

&lt;P&gt;You may want to look into using Intel Premier Support with its confidential facility for resolution with your actual code. &amp;nbsp;Or try 16.0 beta or if possible, try the Windows compiler. &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2015 19:16:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053941#M115894</guid>
      <dc:creator>FortranFan</dc:creator>
      <dc:date>2015-05-05T19:16:19Z</dc:date>
    </item>
    <item>
      <title>If you have 9000 lines of</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053942#M115895</link>
      <description>&lt;P&gt;If you have 9000 lines of source code, you should consider building parts of it with various levels of optimization.&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2015 19:17:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053942#M115895</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2015-05-05T19:17:06Z</dc:date>
    </item>
    <item>
      <title>Well, in that case you can' t</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053943#M115896</link>
      <description>&lt;BLOCKQUOTE&gt;
	&lt;P&gt;Well, in that case you can' t be sure the posted code is indeed a true reproducer of the problem in your actual code.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;No you are right, I know only two way to solve this kind of problem : reducing it, and isolating it. Right know i haven't succeded in isolating it in my code finding a workaround.&lt;BR /&gt;
	Anyway, this test code seems to reveal a bug, and this bug might be the solution of my problem.&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;You may want to look into using Intel Premier Support with its confidential facility for resolution with your actual code. &amp;nbsp;Or try 16.0 beta or if possible, try the Windows compiler. &amp;nbsp;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;I will consider the intel Premier Support, but I can't try on window. I will try to test the 16.0 beta.&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;If you have 9000 lines of source code, you should consider building parts of it with various levels of optimization.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;That's a good idea, I'll keep it in mind&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2015 19:40:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053943#M115896</guid>
      <dc:creator>Alexandre_P_</dc:creator>
      <dc:date>2015-05-05T19:40:00Z</dc:date>
    </item>
    <item>
      <title>Quote:FortranFan wrote:</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053944#M115897</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;FortranFan wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;FWIW, the code in the original post works as expected on &lt;STRONG&gt;Windows &lt;/STRONG&gt;with Intel Fortran 15.0, update 2 as well as 16.0 beta.&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Indeed, I discovered this when I was trying it out. I am fairly certain that it is a bug in an optimization that occurs quite early in the process. It is also probably highly dependent on memory layout.&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2015 19:59:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053944#M115897</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2015-05-05T19:59:58Z</dc:date>
    </item>
    <item>
      <title>I expect the fix for this to</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053945#M115898</link>
      <description>&lt;P&gt;I expect the fix for this to be in the 16.0 release.&lt;/P&gt;</description>
      <pubDate>Wed, 13 May 2015 13:49:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053945#M115898</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2015-05-13T13:49:35Z</dc:date>
    </item>
    <item>
      <title>Ok thanks, I'm looking</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053946#M115899</link>
      <description>&lt;P&gt;Ok thanks, I'm looking forward for it&lt;/P&gt;</description>
      <pubDate>Wed, 13 May 2015 16:32:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053946#M115899</guid>
      <dc:creator>Alexandre_P_</dc:creator>
      <dc:date>2015-05-13T16:32:36Z</dc:date>
    </item>
    <item>
      <title>I am now told that this will</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053947#M115900</link>
      <description>&lt;P&gt;I am now told that this will also be fixed in 2015 Update 5 in August.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jun 2015 13:06:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053947#M115900</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2015-06-12T13:06:31Z</dc:date>
    </item>
    <item>
      <title>OK, thanks</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053948#M115901</link>
      <description>&lt;P&gt;OK, thanks&lt;/P&gt;

&lt;P&gt;I will check this out.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jun 2015 13:29:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Is-this-a-bug-in-ifort/m-p/1053948#M115901</guid>
      <dc:creator>Alexandre_P_</dc:creator>
      <dc:date>2015-06-12T13:29:04Z</dc:date>
    </item>
  </channel>
</rss>

