diff options
author | Andreas Jaeger <aj@suse.de> | 2001-08-13 08:42:44 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2001-08-13 08:42:44 +0000 |
commit | 3b402ca813ce9ac4b689b4b41ccc2e43bb5e6b1d (patch) | |
tree | 25b8b97f2abc1a34c53bd2c34813c64ed558cdda | |
parent | cf9fe93f07ccafc4130ecd3a641b9d5f01afb208 (diff) | |
download | glibc-3b402ca813ce9ac4b689b4b41ccc2e43bb5e6b1d.tar glibc-3b402ca813ce9ac4b689b4b41ccc2e43bb5e6b1d.tar.gz glibc-3b402ca813ce9ac4b689b4b41ccc2e43bb5e6b1d.tar.bz2 glibc-3b402ca813ce9ac4b689b4b41ccc2e43bb5e6b1d.zip |
(MCOUNT): Don't use delay slot for jal since jal is a macro.
-rw-r--r-- | sysdeps/mips/machine-gmon.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sysdeps/mips/machine-gmon.h b/sysdeps/mips/machine-gmon.h index 8a56c76689..4b6a939a0a 100644 --- a/sysdeps/mips/machine-gmon.h +++ b/sysdeps/mips/machine-gmon.h @@ -1,5 +1,5 @@ /* Machine-specific calling sequence for `mcount' profiling function. MIPS - Copyright (C) 1996, 1997, 2000 Free Software Foundation, Inc. + Copyright (C) 1996, 1997, 2000, 2001 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -42,8 +42,9 @@ "sw $1,0($29);" \ "sw $31,4($29);" \ "move $5,$31;" \ - "jal __mcount;" \ "move $4,$1;" \ + "jal __mcount;" \ + "nop;" \ "lw $4,8($29);" \ "lw $5,12($29);" \ "lw $6,16($29);" \ |