From ecad1d050ce550cff0a4726190b8374dcdbaa25b Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Tue, 10 Nov 2020 19:04:54 +0000 Subject: [PATCH] Rename __JCR_LIST__ to __JCR_END__ in crtend.c. This is more consistent with the names used for .ctor and .dtor symbols and better reflects __JCR_END__'s role. Reviewed by: andrew Obtained from: CheriBSD MFC after: 2 weeks Sponsored by: DARPA Differential Revision: https://reviews.freebsd.org/D27125 --- lib/csu/common/crtend.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/csu/common/crtend.c b/lib/csu/common/crtend.c index 19fe5eb8780b..072f7b7a82f2 100644 --- a/lib/csu/common/crtend.c +++ b/lib/csu/common/crtend.c @@ -28,7 +28,7 @@ __FBSDID("$FreeBSD$"); typedef void (*crt_func)(void); -static crt_func __JCR_LIST__[] __section(".jcr") __used = { +static crt_func __JCR_END__[] __section(".jcr") __used = { (crt_func)0 };