From: Kaveh R. Ghazi Date: Sat, 24 Feb 2001 03:57:59 +0000 (+0000) Subject: * rtl.c (rtl_check_failed_code2): Fix typo in last change. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5ea1bc0e465cdbe8e2b49b8d1aff902b32b89abe;p=gcc.git * rtl.c (rtl_check_failed_code2): Fix typo in last change. From-SVN: r40029 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2c7893d6581..dc89f0ac5fe 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-02-23 Kaveh R. Ghazi + + * rtl.c (rtl_check_failed_code2): Fix typo in last change. + 2001-02-23 Per Bothner * gcc.c (record_temp_file, pfatal_with_name, error): Make non-static, diff --git a/gcc/rtl.c b/gcc/rtl.c index 37f58d779ec..3a5a4876c5b 100644 --- a/gcc/rtl.c +++ b/gcc/rtl.c @@ -1346,7 +1346,7 @@ rtl_check_failed_code2 (r, code1, code2, file, line, func) internal_error ("RTL check: expected code `%s' or `%s', have `%s' in %s, at %s:%d", GET_RTX_NAME (code1), GET_RTX_NAME (code2), GET_RTX_NAME (GET_CODE (r)), - ffunc, trim_filename (file), line); + func, trim_filename (file), line); } /* XXX Maybe print the vector? */