Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 15 Sep 2021 16:05:35 GMT
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 857dc1c0ecfb - main - arm64: Pass the right label to END() for handle_empty_exception.
Message-ID:  <202109151605.18FG5ZBu086580@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by jhb:

URL: https://cgit.FreeBSD.org/src/commit/?id=857dc1c0ecfbf40509706b87de832a3f6d7338b2

commit 857dc1c0ecfbf40509706b87de832a3f6d7338b2
Author:     John Baldwin <jhb@FreeBSD.org>
AuthorDate: 2021-09-15 16:03:18 +0000
Commit:     John Baldwin <jhb@FreeBSD.org>
CommitDate: 2021-09-15 16:03:18 +0000

    arm64: Pass the right label to END() for handle_empty_exception.
    
    GNU as reported an error for the argument to .size not being a constant.
    
    Reviewed by:    imp, emaste
    Differential Revision:  https://reviews.freebsd.org/D31950
---
 sys/arm64/arm64/exception.S | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/arm64/arm64/exception.S b/sys/arm64/arm64/exception.S
index 413b9523eb06..22f6b7ce6145 100644
--- a/sys/arm64/arm64/exception.S
+++ b/sys/arm64/arm64/exception.S
@@ -225,7 +225,7 @@ ENTRY(handle_empty_exception)
 	mov	x0, sp
 1:	bl	unhandled_exception
 	b	1b
-END(handle_unhandled_exception)
+END(handle_empty_exception)
 
 .macro	vempty
 	.align 7



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202109151605.18FG5ZBu086580>