The branch main has been updated by jhb: URL: https://cgit.FreeBSD.org/src/commit/?id=857dc1c0ecfbf40509706b87de832a3f6d7338b2
commit 857dc1c0ecfbf40509706b87de832a3f6d7338b2 Author: John Baldwin <j...@freebsd.org> AuthorDate: 2021-09-15 16:03:18 +0000 Commit: John Baldwin <j...@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 _______________________________________________ dev-commits-src-main@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/dev-commits-src-main To unsubscribe, send any mail to "dev-commits-src-main-unsubscr...@freebsd.org"