Commit 9b2db7be by Janus Weil

intrinsic.c (add_sym): Fix my last commit (r147655), which broke bootstrap.

2009-05-18  Janus Weil  <janus@gcc.gnu.org>

	* intrinsic.c (add_sym): Fix my last commit (r147655),
	which broke bootstrap.

From-SVN: r147662
parent 99052692
2009-05-18 Janus Weil <janus@gcc.gnu.org>
* intrinsic.c (add_sym): Fix my last commit (r147655),
which broke bootstrap.
2009-05-18 Richard Guenther <rguenther@suse.de> 2009-05-18 Richard Guenther <rguenther@suse.de>
PR fortran/40168 PR fortran/40168
......
...@@ -303,7 +303,7 @@ add_sym (const char *name, gfc_isym_id id, enum klass cl, int actual_ok, bt type ...@@ -303,7 +303,7 @@ add_sym (const char *name, gfc_isym_id id, enum klass cl, int actual_ok, bt type
type = (bt) va_arg (argp, int); type = (bt) va_arg (argp, int);
kind = va_arg (argp, int); kind = va_arg (argp, int);
optional = va_arg (argp, int); optional = va_arg (argp, int);
intent = va_arg (argp, int); intent = (sym_intent) va_arg (argp, int);
if (sizing != SZ_NOTHING) if (sizing != SZ_NOTHING)
nargs++; nargs++;
......
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