git: 857dc1c0ecfb - main - arm64: Pass the right label to END() for handle_empty_exception.

John Baldwin jhb at FreeBSD.org
Wed Sep 15 16:05:36 UTC 2021


The branch main has been updated by jhb:

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

commit 857dc1c0ecfbf40509706b87de832a3f6d7338b2
Author:     John Baldwin <jhb at FreeBSD.org>
AuthorDate: 2021-09-15 16:03:18 +0000
Commit:     John Baldwin <jhb at 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


More information about the dev-commits-src-all mailing list