Commit e5ad6436 by Bernd Schmidt Committed by Bernd Schmidt

Fix small problem with gcse dumps

From-SVN: r28855
parent af13ebe9
Wed Aug 25 11:18:39 1999 Bernd Schmidt <bernds@cygnus.co.uk>
* toplev.c (rest_of_compilation): Use decl_printable_name when opening
gcse dump file.
Wed Aug 25 10:57:12 1999 Nick Clifton <nickc@cygnus.com>
* config/arm/telf.h (ASM_WEAKEN_LABEL): Define.
......
......@@ -3904,7 +3904,7 @@ rest_of_compilation (decl)
if (optimize > 0 && flag_gcse)
{
if (gcse_dump)
open_dump_file (".gcse", IDENTIFIER_POINTER (DECL_NAME (decl)));
open_dump_file (".gcse", decl_printable_name (decl, 2));
TIMEVAR (gcse_time, tem = gcse_main (insns, rtl_dump_file));
......
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