<?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 In order to explain my in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Variable-not-initialized-in-Release-mode/m-p/1043371#M113530</link>
    <description>&lt;P&gt;In order to explain my problem I present a case study which is not exactly my code but is an example to understand the bug that arises in my code.&lt;/P&gt;

&lt;P&gt;I have three subroutines (for take a simplicity I omit the variable declarations):&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;subroutine MAIN_PROGRAM&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;call INIT_DATA&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;A=B+C;&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;write(*,*) "the variable A is", text,A&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;pause&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;end subroutine MAIN_PROGRAM&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;subroutine INIT_DATA&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;B=10.0&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;C=1.0&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;text='equal to'&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;end subroutine INIT_DATA&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;If I try to execute the subroutine "MAIN_PROGRAM" in debug mode, the output is correctly:&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;"the variable A is equal to 11.0"&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;In Release mode, the run of "MAIN_PROGRAM" produce the output:&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;"the variable A is &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;11.0"&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;or&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;"the variable A is equal to 0.0"&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;or&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;"the variable A is equal to 10.0"&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;or&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;"the variable A is equal to 1.0"&lt;/EM&gt;&lt;/P&gt;

&lt;PRE&gt;Therefore , in release mode , it happens that some variables are initialized even after performing proper initialization&lt;/PRE&gt;

&lt;P align="center"&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 01 Nov 2014 11:24:40 GMT</pubDate>
    <dc:creator>Gian_Giuseppe_S_</dc:creator>
    <dc:date>2014-11-01T11:24:40Z</dc:date>
    <item>
      <title>Variable not initialized in Release mode</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Variable-not-initialized-in-Release-mode/m-p/1043365#M113524</link>
      <description>&lt;P&gt;I have a solution constitued by a fortran code (fortran project) that depend on a project constitued by a *.lib file.&lt;/P&gt;

&lt;P&gt;In the fortran code, some variable are initialized in a subroutine.&lt;/P&gt;

&lt;P&gt;In the debug mode, the software/solution is correct and all the variables can be used with the correct value.&lt;/P&gt;

&lt;P&gt;In the release mode, any variable appear with a initial value. For example, the string variable appear with the value '&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' but in the code the same variables are correctly initialized.&lt;/P&gt;

&lt;P&gt;Thank you in advance.&lt;/P&gt;</description>
      <pubDate>Fri, 31 Oct 2014 18:40:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Variable-not-initialized-in-Release-mode/m-p/1043365#M113524</guid>
      <dc:creator>Gian_Giuseppe_S_</dc:creator>
      <dc:date>2014-10-31T18:40:38Z</dc:date>
    </item>
    <item>
      <title>If you do not initialize the</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Variable-not-initialized-in-Release-mode/m-p/1043366#M113525</link>
      <description>&lt;P&gt;If you do not initialize the string variable yourself to ' ' you cannot rely on it being pre-initialized for you. Debug builds may initialize variables in an aid to debugging (e.g. to identify where you are using a variable before it is defined/initialized). Release mode does not do this.&lt;/P&gt;

&lt;P&gt;Jim Dempsey&lt;/P&gt;</description>
      <pubDate>Fri, 31 Oct 2014 19:06:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Variable-not-initialized-in-Release-mode/m-p/1043366#M113525</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2014-10-31T19:06:46Z</dc:date>
    </item>
    <item>
      <title>Debug builds do not</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Variable-not-initialized-in-Release-mode/m-p/1043367#M113526</link>
      <description>&lt;P&gt;Debug builds do not initialize variables, but you are perhaps more likely to find that a variable happens to have a zero value, especially if it got allocated in static memory. In release mode, with optimization, variables are more likely to be assigned to registers or the stack.&lt;/P&gt;

&lt;P&gt;Please show us a small but complete test case that demonstrates the problem you have. It is unclear from your description what is happening.&lt;/P&gt;</description>
      <pubDate>Fri, 31 Oct 2014 19:19:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Variable-not-initialized-in-Release-mode/m-p/1043367#M113526</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2014-10-31T19:19:21Z</dc:date>
    </item>
    <item>
      <title>The variables are initialized</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Variable-not-initialized-in-Release-mode/m-p/1043368#M113527</link>
      <description>&lt;P&gt;The variables are initialized also in the release mode. The problem is that in this mode the initialization does not seem to work correctly...&lt;/P&gt;</description>
      <pubDate>Fri, 31 Oct 2014 19:27:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Variable-not-initialized-in-Release-mode/m-p/1043368#M113527</guid>
      <dc:creator>Gian_Giuseppe_S_</dc:creator>
      <dc:date>2014-10-31T19:27:26Z</dc:date>
    </item>
    <item>
      <title>Test case, please.</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Variable-not-initialized-in-Release-mode/m-p/1043369#M113528</link>
      <description>&lt;P&gt;Test case, please.&lt;/P&gt;</description>
      <pubDate>Fri, 31 Oct 2014 20:25:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Variable-not-initialized-in-Release-mode/m-p/1043369#M113528</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2014-10-31T20:25:35Z</dc:date>
    </item>
    <item>
      <title>You cannot trust the debugger</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Variable-not-initialized-in-Release-mode/m-p/1043370#M113529</link>
      <description>&lt;P&gt;You cannot trust the debugger to show you variable values correctly when the program has been compiled with a high optimization level. In particular, as others have commented, variables currently in registers may appear to have incorrect values because the debugger shows you the contents of the memory location allocated to the variable, when the changes to the variable value have not yet been copied to memory.&lt;/P&gt;</description>
      <pubDate>Fri, 31 Oct 2014 20:29:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Variable-not-initialized-in-Release-mode/m-p/1043370#M113529</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2014-10-31T20:29:26Z</dc:date>
    </item>
    <item>
      <title>In order to explain my</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Variable-not-initialized-in-Release-mode/m-p/1043371#M113530</link>
      <description>&lt;P&gt;In order to explain my problem I present a case study which is not exactly my code but is an example to understand the bug that arises in my code.&lt;/P&gt;

&lt;P&gt;I have three subroutines (for take a simplicity I omit the variable declarations):&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;subroutine MAIN_PROGRAM&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;call INIT_DATA&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;A=B+C;&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;write(*,*) "the variable A is", text,A&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;pause&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;end subroutine MAIN_PROGRAM&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;subroutine INIT_DATA&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;B=10.0&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;C=1.0&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;text='equal to'&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;end subroutine INIT_DATA&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;If I try to execute the subroutine "MAIN_PROGRAM" in debug mode, the output is correctly:&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;"the variable A is equal to 11.0"&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;In Release mode, the run of "MAIN_PROGRAM" produce the output:&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;"the variable A is &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;11.0"&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;or&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;"the variable A is equal to 0.0"&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;or&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;"the variable A is equal to 10.0"&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;or&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;"the variable A is equal to 1.0"&lt;/EM&gt;&lt;/P&gt;

&lt;PRE&gt;Therefore , in release mode , it happens that some variables are initialized even after performing proper initialization&lt;/PRE&gt;

&lt;P align="center"&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 01 Nov 2014 11:24:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Variable-not-initialized-in-Release-mode/m-p/1043371#M113530</guid>
      <dc:creator>Gian_Giuseppe_S_</dc:creator>
      <dc:date>2014-11-01T11:24:40Z</dc:date>
    </item>
    <item>
      <title>The underlying problem is you</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Variable-not-initialized-in-Release-mode/m-p/1043372#M113531</link>
      <description>&lt;P&gt;The underlying problem is you are expecting A, B, C and text to have global scope.&lt;/P&gt;

&lt;P&gt;Instead, each has local scope. Instead for global scope&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;module YourModuleName
&amp;nbsp;&amp;nbsp; real :: A,B,C
&amp;nbsp;&amp;nbsp; character(len=YourMaxLen) :: text
end module YourModuleName

subroutine MAIN_PROGRAM
&amp;nbsp; use YourModuleName
  implicit none
&amp;nbsp; call INIT_DATA
&amp;nbsp; A=B+C;
&amp;nbsp; write(*,*) "the variable A is", text,A
&amp;nbsp; pause
end subroutine MAIN_PROGRAM

subroutine INIT_DATA
&amp;nbsp; use YourModuleName
  implicit none
&amp;nbsp; B=10.0
&amp;nbsp; C=1.0
&amp;nbsp; text='equal to'
end subroutine INIT_DATA
&lt;/PRE&gt;

&lt;P&gt;A better arrangement would be to place the INIT_DATA in the module YourModuleName (name this whatever you want)&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;module YourModuleName
&amp;nbsp;&amp;nbsp; real :: A,B,C
&amp;nbsp;&amp;nbsp; character(len=YourMaxLen) :: text
contains
&amp;nbsp; subroutine INIT_DATA
&amp;nbsp;&amp;nbsp;&amp;nbsp; use YourModuleName
&amp;nbsp;&amp;nbsp;&amp;nbsp; implicit none
&amp;nbsp;&amp;nbsp;&amp;nbsp; B=10.0
&amp;nbsp;&amp;nbsp;&amp;nbsp; C=1.0
&amp;nbsp;&amp;nbsp;&amp;nbsp; text='equal to'
&amp;nbsp; end subroutine INIT_DATA
end module YourModuleName

subroutine MAIN_PROGRAM
&amp;nbsp; use YourModuleName
&amp;nbsp; implicit none
&amp;nbsp; call INIT_DATA
&amp;nbsp; A=B+C;
&amp;nbsp; write(*,*) "the variable A is", text,A
&amp;nbsp; pause
end subroutine MAIN_PROGRAM

&lt;/PRE&gt;

&lt;P&gt;Jim Dempsey&lt;/P&gt;</description>
      <pubDate>Sat, 01 Nov 2014 11:41:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Variable-not-initialized-in-Release-mode/m-p/1043372#M113531</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2014-11-01T11:41:03Z</dc:date>
    </item>
    <item>
      <title>Dear Jim,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Variable-not-initialized-in-Release-mode/m-p/1043373#M113532</link>
      <description>&lt;P&gt;Dear Jim,&lt;/P&gt;

&lt;P&gt;the variables used in my code are just defined in global mode, by a module definition also if in my little example this is not evident.&lt;/P&gt;

&lt;P&gt;Thank you,&lt;/P&gt;

&lt;P&gt;Gian Giuseppe&lt;/P&gt;</description>
      <pubDate>Sat, 01 Nov 2014 11:51:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Variable-not-initialized-in-Release-mode/m-p/1043373#M113532</guid>
      <dc:creator>Gian_Giuseppe_S_</dc:creator>
      <dc:date>2014-11-01T11:51:36Z</dc:date>
    </item>
    <item>
      <title>The program that you</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Variable-not-initialized-in-Release-mode/m-p/1043374#M113533</link>
      <description>&lt;P&gt;The program that you displayed in #7 is not a Fortran Standard compliant complete program. The listed code does not even have a main program, so you could not have compiled and run it. If you changed Subroutine Main_Program to Program Main_Program, you could compile and run it, but its output is undefined, and it is pointless to argue what the output of that program should be. You can see this for yourself by compiling with the /CU option after changing the first subroutine to a program.&lt;/P&gt;

&lt;P&gt;If that program was meant to present a simplified view of a real problem with a larger program, it failed. To make progress towards a solution, you will need to present actual code instead of approximate and incomplete verbal descriptions. As to the unproven claim that&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;"Therefore , in release mode , it happens that some variables are initialized even after performing proper initialization&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;I remain an unbeliever.&lt;/P&gt;</description>
      <pubDate>Sat, 01 Nov 2014 12:59:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Variable-not-initialized-in-Release-mode/m-p/1043374#M113533</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2014-11-01T12:59:00Z</dc:date>
    </item>
    <item>
      <title>To reiterate mecej4's comment</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Variable-not-initialized-in-Release-mode/m-p/1043375#M113534</link>
      <description>&lt;P&gt;To reiterate mecej4's comment just turn your few lines of code into a proper stand alone example and then the problem will become clear and the and a proper answer can be given.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 01 Nov 2014 16:38:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Variable-not-initialized-in-Release-mode/m-p/1043375#M113534</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2014-11-01T16:38:09Z</dc:date>
    </item>
    <item>
      <title>I try to realize a real</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Variable-not-initialized-in-Release-mode/m-p/1043376#M113535</link>
      <description>&lt;PRE class="brush:fortran;"&gt;I try to realize a real example with the problem.
&lt;/PRE&gt;

&lt;P&gt;The subroutine MAIN_SOFTWARE is the main that generate a menù. By clicking the menù it is possible to run a subroutine RUN_PROGRAM.&lt;/P&gt;

&lt;P&gt;If I try to execute this program in debug mode, the output is correctly, while in release mode the value of some variable is zero (or null, for character variables) even though in "init_data" all variables has been initialized.&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;module MOD_VARIABLES

  REAL A,B

  character*256 NAME_FILE

end module MOD_VARIABLES&lt;/PRE&gt;

&lt;PRE class="brush:fortran;"&gt;program MAIN_SOFTWARE

 	use MOD_VARIABLES

  implicit none


	do while(.true.)
	  call YIELDQQ
	end do

end

!* The INITIALSETTINGS function initializes the menus that will appear 
!* when the program starts. It is called internally by the QuickWin
!* startup code and should never be directly called from the program.
!*
!* To debug the INITIALSETTINGS routine, put a breakpoint in the code 
!* before starting to debug.  This is necessary since the code gets

!* called before any FORTRAN code is executed.
!
!* Note how the first (menu item 0) menu item for each new menu uses 
!* NUL for the menu routine.

!* This routine demonstrates the following menu functions:


logical(KIND=4) function INITIALSETTINGS

	use DFLIB
	use DFLOGM
	use MOD_H2O

	implicit none

	character(LEN=50)mname
	integer(KIND=4)mnum
	logical(4)  l4
	external RUN_PROGRAM

	mnum=1
	mname='TEST'C
	l4 = appendmenuqq(mnum, $MENUENABLED, mname, NUL)
	mname='Run...'C
	l4 = appendmenuqq(mnum, $MENUGRAYED, mname, RUN_PROGRAM)

	InitialSettings = l4

end function INITIALSETTINGS&lt;/PRE&gt;

&lt;PRE class="brush:fortran;"&gt;subroutine RUN_PROGRAM

	use MOD_VARIABLES
	
	implicit none

  real C
  
  	
	call INIT_DATA
	
	C=A+B
	
	WRITE(*,*) "The C value",NAME_FILE,C
	PAUSE


end subroutine RUN_PROGRAM&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 01 Nov 2014 17:35:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Variable-not-initialized-in-Release-mode/m-p/1043376#M113535</guid>
      <dc:creator>Gian_Giuseppe_S_</dc:creator>
      <dc:date>2014-11-01T17:35:37Z</dc:date>
    </item>
    <item>
      <title>Module MOD_H2O is unknown. If</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Variable-not-initialized-in-Release-mode/m-p/1043377#M113536</link>
      <description>&lt;P&gt;Module MOD_H2O is unknown. If the code INIT_DATA is to taken from #7, since no new version was given, the bugs are clear: the subroutine INIT_DATA uses implicit typing, and assigns a character string to a real variable, all these variables are local to the subroutine, and are not visible outside the subroutine. Setting these variables has no effect on the variables with the same names in module MOD_VARIABLES, so the module variables A, B and NAME_FILE are undefined when you attempt to use and display them in subroutine&amp;nbsp;RUN_PROGRAM.&lt;/P&gt;

&lt;P&gt;Given all these bugs, not much faith should be placed in what one sees in the debugger. As I suggested earlier, add IMPLICIT NONE to all your routines and compile with checks such as /CU turned on. Optimization can be thought of after the bugs have been fixed. Remember, Knuth is reported to have said, "Premature optimization is the root of all evil".&lt;/P&gt;</description>
      <pubDate>Sat, 01 Nov 2014 18:26:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Variable-not-initialized-in-Release-mode/m-p/1043377#M113536</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2014-11-01T18:26:00Z</dc:date>
    </item>
  </channel>
</rss>

