diff options
author | Ulrich Drepper <drepper@cygnus.com> | 2000-04-28 01:54:53 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@gcc.gnu.org> | 2000-04-28 01:54:53 +0000 |
commit | d8b2fb5235d3e0a986da4ce3d642d33e7680b5c8 (patch) | |
tree | 8e077e63d7ad69923acb19684cc30a80b5481e3b /gcc | |
parent | a9266bfa4a9d8491d5cdb1d1653e23ecdc7cbc17 (diff) | |
download | gcc-d8b2fb5235d3e0a986da4ce3d642d33e7680b5c8.zip gcc-d8b2fb5235d3e0a986da4ce3d642d33e7680b5c8.tar.gz gcc-d8b2fb5235d3e0a986da4ce3d642d33e7680b5c8.tar.bz2 |
i386.h (FUNCTION_BLOCK_PROFILER_EXIT): Generate mem reference for call instruction with mode QImode.
* i386.h (FUNCTION_BLOCK_PROFILER_EXIT): Generate mem reference
for call instruction with mode QImode.
From-SVN: r33499
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/i386.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 35d7605..d97db7a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-04-27 Ulrich Drepper <drepper@cygnus.com> + + * i386.h (FUNCTION_BLOCK_PROFILER_EXIT): Generate mem reference + for call instruction with mode QImode. + 2000-04-27 Alex Samuel <samuel@codesourcery.com> * Makefile.in (OBJS): Add timevar.o. diff --git a/gcc/config/i386/i386.h b/gcc/config/i386/i386.h index 9f5a28d..007255d 100644 --- a/gcc/config/i386/i386.h +++ b/gcc/config/i386/i386.h @@ -1366,7 +1366,7 @@ typedef struct ix86_args { */ #define FUNCTION_BLOCK_PROFILER_EXIT \ -emit_call_insn (gen_call (gen_rtx_MEM (Pmode, \ +emit_call_insn (gen_call (gen_rtx_MEM (QImode, \ gen_rtx_SYMBOL_REF (VOIDmode, "__bb_trace_ret")), \ const0_rtx)) |