2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2025-04-13 11:51:22 +08:00

re PR libfortran/32972 (performance of pack/unpack)

2008-03-19  Thomas Koenig  <tkoenig@gcc.gnu.org>

	PR libfortran/32972
	* runtime/in_pack_generic.c (internal_pack):  Fix typo in
	last commit.

From-SVN: r133345
This commit is contained in:
Thomas Koenig 2008-03-19 16:56:22 +00:00
parent 8e1d7686de
commit 2f3b8279bf
2 changed files with 7 additions and 1 deletions
libgfortran

@ -1,3 +1,9 @@
2008-03-19 Thomas Koenig <tkoenig@gcc.gnu.org>
PR libfortran/32972
* runtime/in_pack_generic.c (internal_pack): Fix typo in
last commit.
2008-03-19 Thomas Koenig <tkoenig@gcc.gnu.org>
PR libfortran/32972

@ -81,7 +81,7 @@ internal_pack (gfc_array_char * source)
#if defined(HAVE_GFC_INTEGER_16)
case sizeof (GFC_INTEGER_16):
return internal_pack_16 (gfc_array_i16 *) source);
return internal_pack_16 ((gfc_array_i16 *) source);
#endif
}
break;