Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 10 May 2022 23:24:03 GMT
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: f54a50988e9a - stable/13 - arm64: Pass the right label to END() for handle_empty_exception.
Message-ID:  <202205102324.24ANO34G072317@gitrepo.freebsd.org>

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

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

commit f54a50988e9a5dd840f00050f2637cbe41977ca1
Author:     John Baldwin <jhb@FreeBSD.org>
AuthorDate: 2021-09-15 16:03:18 +0000
Commit:     John Baldwin <jhb@FreeBSD.org>
CommitDate: 2022-05-10 22:51:49 +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
    
    (cherry picked from commit 857dc1c0ecfbf40509706b87de832a3f6d7338b2)
---
 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 b6d6689e57a9..63fcbd2d98a7 100644
--- a/sys/arm64/arm64/exception.S
+++ b/sys/arm64/arm64/exception.S
@@ -241,7 +241,7 @@ ENTRY(handle_empty_exception)
 	mov	x0, sp
 1:	bl	unhandled_exception
 	b	1b
-END(handle_unhandled_exception)
+END(handle_empty_exception)
 
 .macro	vector	name, el
 	.align 7



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