Commit 169eba79 by Daniel Kraft Committed by Daniel Kraft

re PR fortran/46794 (ICE on valid code involving power of small integer kinds)

2010-12-05  Daniel Kraft  <d@domob.eu>

	PR fortran/46794
	* gfortran.dg/power2.f90: Initialize variables.

From-SVN: r167471
parent ec692d5f
2010-12-05 Daniel Kraft <d@domob.eu>
PR fortran/46794
* gfortran.dg/power2.f90: Initialize variables.
2010-12-04 Jan Hubicka <jh@suse.cz>
* snprintf-chk.c (ptr): Declare volatile.
......
......@@ -13,6 +13,9 @@ PROGRAM main
INTEGER(KIND=1) :: k1
INTEGER(KIND=2) :: k2
k1 = 1_1
k2 = 1_2
k1 = 1_1 + 1_1**k1
k2 = 1_2 + 1_2**k2
......
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