Date: Sun, 16 Nov 2014 23:46:06 +0100 From: Jeroen Hofstee <jeroen@myspectrum.nl> To: freebsd-arm@freebsd.org Subject: EEND errors Message-ID: <5469292E.7010601@myspectrum.nl>
next in thread | raw e-mail | index | archive | help
This is a multi-part message in MIME format. --------------040102070303000108060705 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Hi, When compiling FreeBSD with a linux ARM compiler, it complains about a couple of END/EEND macro's. Attached patch should fix this. Regards, Jeroen --------------040102070303000108060705 Content-Type: text/x-patch; name="0001-arm-fix-some-EEND-END-mismatches.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0001-arm-fix-some-EEND-END-mismatches.patch" >From 12fc31ba2c81decb93a20ee9e878ee914837b4d1 Mon Sep 17 00:00:00 2001 From: Jeroen Hofstee <jhofstee@victronenergy.com> Date: Sun, 16 Nov 2014 23:37:20 +0100 Subject: [PATCH] arm: fix some EEND/END mismatches --- sys/arm/arm/fusu.S | 4 ++-- sys/arm/arm/support.S | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/arm/arm/fusu.S b/sys/arm/arm/fusu.S index c70215c..b55f443 100644 --- a/sys/arm/arm/fusu.S +++ b/sys/arm/arm/fusu.S @@ -129,7 +129,7 @@ EENTRY_NP(fuword32) str r1, [r2, #PCB_ONFAULT] mov r0, r3 RET -END(fuword32) +EEND(fuword32) END(fuword) /* @@ -295,7 +295,7 @@ EENTRY_NP(suword32) mov r0, #0x00000000 str r0, [r2, #PCB_ONFAULT] RET -END(suword32) +EEND(suword32) END(suword) /* diff --git a/sys/arm/arm/support.S b/sys/arm/arm/support.S index 2a6eec9..1714b0f 100644 --- a/sys/arm/arm/support.S +++ b/sys/arm/arm/support.S @@ -130,7 +130,7 @@ ENTRY(bzero) .Lnormal0: mov r3, #0x00 b do_memset -EEND(bzero) +END(bzero) /* LINTSTUB: Func: void *memset(void *, int, size_t) */ ENTRY(memset) and r3, r1, #0xff /* We deal with bytes */ -- 2.1.0 --------------040102070303000108060705--
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?5469292E.7010601>