Commit 257fafe0 by Francois-Xavier Coudert Committed by François-Xavier Coudert

re PR libfortran/33386 (Fortran SELECT statement miscompiles)

	PR libfortran/33386
	* runtime/select.c (select_string): Initialize default_jump.

From-SVN: r128379
parent c47b0cb4
2007-09-11 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
PR libfortran/33386
* runtime/select.c (select_string): Initialize default_jump.
2007-09-07 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR libfortran/33307
......
......@@ -53,7 +53,7 @@ select_string (select_struct *table, int table_len, const char *selector,
{
select_struct *t;
int i, low, high, mid;
int default_jump;
int default_jump = -1;
if (table_len == 0)
return -1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment