gengtype.c (header_dot_h_frul, [...]): Remove ENABLE_CHECKING around DBGPRINTF.

2010-11-23  Basile Starynkevitch  <basile@starynkevitch.net>

	* gengtype.c (header_dot_h_frul, source_dot_c_frul):
	Remove ENABLE_CHECKING around DBGPRINTF.

From-SVN: r167070
This commit is contained in:
Basile Starynkevitch 2010-11-23 06:33:31 +00:00 committed by Basile Starynkevitch
parent c292063b03
commit fd1e183c92
2 changed files with 11 additions and 11 deletions

View File

@ -1,3 +1,8 @@
2010-11-23 Basile Starynkevitch <basile@starynkevitch.net>
* gengtype.c (header_dot_h_frul, source_dot_c_frul):
Remove ENABLE_CHECKING around DBGPRINTF.
2010-11-22 Joseph Myers <joseph@codesourcery.com> 2010-11-22 Joseph Myers <joseph@codesourcery.com>
* common.opt (exit_after_options, write_symbols, debug_info_level, * common.opt (exit_after_options, write_symbols, debug_info_level,

View File

@ -1868,16 +1868,12 @@ header_dot_h_frul (input_file* inpf, char**poutname,
{ {
const char *basename = 0; const char *basename = 0;
int lang_index = 0; int lang_index = 0;
#if ENABLE_CHECKING
const char *inpname = get_input_file_name (inpf);
DBGPRINTF ("inpf %p inpname %s outname %s forname %s", DBGPRINTF ("inpf %p inpname %s outname %s forname %s",
(void*) inpf, inpname, *poutname, *pforname); (void*) inpf, get_input_file_name (inpf),
#endif *poutname, *pforname);
basename = get_file_basename (inpf); basename = get_file_basename (inpf);
lang_index = get_prefix_langdir_index (basename); lang_index = get_prefix_langdir_index (basename);
#if ENABLE_CHECKING
DBGPRINTF ("basename %s lang_index %d", basename, lang_index); DBGPRINTF ("basename %s lang_index %d", basename, lang_index);
#endif
if (lang_index >= 0) if (lang_index >= 0)
{ {
@ -1896,7 +1892,8 @@ header_dot_h_frul (input_file* inpf, char**poutname,
get_output_file_with_visibility will find its outf_p. */ get_output_file_with_visibility will find its outf_p. */
free (*poutname); free (*poutname);
*poutname = xstrdup ("gtype-desc.c"); *poutname = xstrdup ("gtype-desc.c");
DBGPRINTF ("special 'gtype-desc.c' for inpname %s", inpname); DBGPRINTF ("special 'gtype-desc.c' for inpname %s",
get_input_file_name (inpf));
return NULL; return NULL;
} }
} }
@ -1912,13 +1909,11 @@ source_dot_c_frul (input_file* inpf, char**poutname, char**pforname)
{ {
char *newbasename = CONST_CAST (char*, get_file_basename (inpf)); char *newbasename = CONST_CAST (char*, get_file_basename (inpf));
char *newoutname = CONST_CAST (char*, get_file_gtfilename (inpf)); char *newoutname = CONST_CAST (char*, get_file_gtfilename (inpf));
#if ENABLE_CHECKING
const char *inpname = get_input_file_name (inpf);
DBGPRINTF ("inpf %p inpname %s original outname %s forname %s", DBGPRINTF ("inpf %p inpname %s original outname %s forname %s",
(void*) inpf, inpname, *poutname, *pforname); (void*) inpf, get_input_file_name (inpf),
*poutname, *pforname);
DBGPRINTF ("newoutname %s", newoutname); DBGPRINTF ("newoutname %s", newoutname);
DBGPRINTF ("newbasename %s", newbasename); DBGPRINTF ("newbasename %s", newbasename);
#endif
free (*poutname); free (*poutname);
free (*pforname); free (*pforname);
*poutname = newoutname; *poutname = newoutname;