diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2002-12-05 23:55:15 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@gcc.gnu.org> | 2002-12-05 23:55:15 +0000 |
commit | 1a823ac1fd1aeb2654e666017cea1b82a3b188b6 (patch) | |
tree | 5f845ea5975f4975c84d1523889809bc46b6c3d0 /gcc | |
parent | 747db477056f8cca51e706c086975200b697700e (diff) | |
download | gcc-1a823ac1fd1aeb2654e666017cea1b82a3b188b6.zip gcc-1a823ac1fd1aeb2654e666017cea1b82a3b188b6.tar.gz gcc-1a823ac1fd1aeb2654e666017cea1b82a3b188b6.tar.bz2 |
cygwin.h (SUBTARGET_PROLOGUE): Replace with PROFILE_HOOK.
* config/i386/cygwin.h (SUBTARGET_PROLOGUE): Replace with
PROFILE_HOOK.
* config/i386/mingw32.h (SUBTARGET_PROLOGUE): Don't undef.
From-SVN: r59874
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/i386/cygwin.h | 12 | ||||
-rw-r--r-- | gcc/config/i386/mingw32.h | 4 |
3 files changed, 12 insertions, 10 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index caedebf..683219f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2002-12-05 Danny Smith <dannysmith@users.sourceforge.net> + + * config/i386/cygwin.h (SUBTARGET_PROLOGUE): Replace with + PROFILE_HOOK. + * config/i386/mingw32.h (SUBTARGET_PROLOGUE): Don't undef. + 2002-12-05 Aldy Hernandez <aldyh@redhat.com> * config/rs6000/spe.h (__ev_mwlufi): Remove. diff --git a/gcc/config/i386/cygwin.h b/gcc/config/i386/cygwin.h index 680bf74..f630d1f 100644 --- a/gcc/config/i386/cygwin.h +++ b/gcc/config/i386/cygwin.h @@ -387,15 +387,15 @@ extern void i386_pe_unique_section PARAMS ((TREE, int)); /* Don't assume anything about the header files. */ #define NO_IMPLICIT_EXTERN_C -#define SUBTARGET_PROLOGUE \ - if (current_function_profile \ - && MAIN_NAME_P (DECL_NAME (current_function_decl))) \ - { \ - emit_call_insn (gen_rtx (CALL, VOIDmode, \ +#undef PROFILE_HOOK +#define PROFILE_HOOK(LABEL) \ + if (MAIN_NAME_P (DECL_NAME (current_function_decl))) \ + { \ + emit_call_insn (gen_rtx (CALL, VOIDmode, \ gen_rtx_MEM (FUNCTION_MODE, \ gen_rtx_SYMBOL_REF (Pmode, "_monstartup")), \ const0_rtx)); \ - } + } /* External function declarations. */ diff --git a/gcc/config/i386/mingw32.h b/gcc/config/i386/mingw32.h index 6b367eb..e7c5e8b 100644 --- a/gcc/config/i386/mingw32.h +++ b/gcc/config/i386/mingw32.h @@ -127,10 +127,6 @@ do { \ putc ('\"', asm_file); \ } while (0) -/* Override Cygwin's definition. This is necessary now due to the way - Cygwin profiling code is written. Once "fixed", we can remove this. */ -#undef SUBTARGET_PROLOGUE - /* Define as short unsigned for compatability with MS runtime. */ #undef WINT_TYPE #define WINT_TYPE "short unsigned int" |