From 792a073a0217b190cb15ffbaeaf48d6d66e5d7c2 Mon Sep 17 00:00:00 2001 From: ctice Date: Mon, 16 May 2005 21:37:01 +0000 Subject: 2005-05-16 Caroline Tice * bb-reorder.c (verify_hot_cold_block_grouping): Replace internal_error with gcc_assert. * dwarf2out.c (dwarf2out_switch_text_section): Likewise. * function.h (struct function): Remove space between "*" and struct field names. * varasm.c (initialize_cold_section_name): Add gcc_assert; modify to use alloca. (unlikely_text_section): Add check for flag_function_sections. (assemble_start_function): Move call to resolve_section, so it comes before first call to unlikely_text_section. (assemble_end_function): Add test and call to function_section if appropriate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@99796 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/function.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gcc/function.h') diff --git a/gcc/function.h b/gcc/function.h index 0720c12ca5d..f0622338209 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -357,10 +357,10 @@ struct function GTY(()) be used by debugger functions for determining the size of text sections. */ - const char * hot_section_label; - const char * cold_section_label; - const char * hot_section_end_label; - const char * cold_section_end_label; + const char *hot_section_label; + const char *cold_section_label; + const char *hot_section_end_label; + const char *cold_section_end_label; /* String to be used for name of cold text sections, via targetm.asm_out.named_section. */ -- cgit v1.2.3