diff options
author | cognet <cognet@FreeBSD.org> | 2007-05-19 16:20:37 +0000 |
---|---|---|
committer | cognet <cognet@FreeBSD.org> | 2007-05-19 16:20:37 +0000 |
commit | 643c457209498033ae2cddd70831b39918d945f0 (patch) | |
tree | 8073a8d700645c5f2cdb83598b8526b69ed35f08 /sys/arm/include/asm.h | |
parent | 087655728e86087d644d50678bf5f0f2816e2692 (diff) | |
download | FreeBSD-src-643c457209498033ae2cddd70831b39918d945f0.zip FreeBSD-src-643c457209498033ae2cddd70831b39918d945f0.tar.gz |
Use __mcount() instead of _mcount() to reduce diffs with NetBSD.
Diffstat (limited to 'sys/arm/include/asm.h')
-rw-r--r-- | sys/arm/include/asm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arm/include/asm.h b/sys/arm/include/asm.h index 61d2a76..347a78e 100644 --- a/sys/arm/include/asm.h +++ b/sys/arm/include/asm.h @@ -80,7 +80,7 @@ #ifdef GPROF # define _PROF_PROLOGUE \ - mov ip, lr; bl _mcount + mov ip, lr; bl __mcount #else # define _PROF_PROLOGUE #endif |