Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/common/lib/libc/arch/arm/string fix cfi_register -> cfi_offset
details: https://anonhg.NetBSD.org/src/rev/21ed4d6f6e78
branches: trunk
changeset: 789451:21ed4d6f6e78
user: matt <matt%NetBSD.org@localhost>
date: Mon Aug 19 06:11:20 2013 +0000
description:
fix cfi_register -> cfi_offset
diffstat:
common/lib/libc/arch/arm/string/strlcat_arm.S | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diffs (27 lines):
diff -r 8392ab35b0a4 -r 21ed4d6f6e78 common/lib/libc/arch/arm/string/strlcat_arm.S
--- a/common/lib/libc/arch/arm/string/strlcat_arm.S Mon Aug 19 04:27:22 2013 +0000
+++ b/common/lib/libc/arch/arm/string/strlcat_arm.S Mon Aug 19 06:11:20 2013 +0000
@@ -29,7 +29,7 @@
#include <machine/asm.h>
-RCSID("$NetBSD: strlcat_arm.S,v 1.2 2013/08/19 01:12:08 matt Exp $")
+RCSID("$NetBSD: strlcat_arm.S,v 1.3 2013/08/19 06:11:20 matt Exp $")
/* LINTSTUB: size_t strlcat(char *, const char *, size_t) */
ENTRY(strlcat)
@@ -41,10 +41,10 @@
#ifdef __ARM_EABI__
.save {r4-r6, lr}
.cfi_def_cfa_offset 16
- .cfi_register 14, -4
- .cfi_register 6, -8
- .cfi_register 5, -12
- .cfi_register 4, -16
+ .cfi_offset 14, -4
+ .cfi_offset 6, -8
+ .cfi_offset 5, -12
+ .cfi_offset 4, -16
#endif
mov r4, r0 /* save dst */
mov r5, r1 /* save src */
Home |
Main Index |
Thread Index |
Old Index