Module Name:    src
Committed By:   martin
Date:           Mon Jun 13 12:55:06 UTC 2022

Modified Files:
        src/tests/lib/csu: h_ifunc_static.c

Log Message:
Restore arm in the list of architectures supporting ifunc, accidently
lost in the OABI removal.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/tests/lib/csu/h_ifunc_static.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/tests/lib/csu/h_ifunc_static.c
diff -u src/tests/lib/csu/h_ifunc_static.c:1.4 src/tests/lib/csu/h_ifunc_static.c:1.5
--- src/tests/lib/csu/h_ifunc_static.c:1.4	Mon Jun  7 17:11:17 2021
+++ src/tests/lib/csu/h_ifunc_static.c	Mon Jun 13 12:55:06 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: h_ifunc_static.c,v 1.4 2021/06/07 17:11:17 christos Exp $	*/
+/*	$NetBSD: h_ifunc_static.c,v 1.5 2022/06/13 12:55:06 martin Exp $	*/
 
 /*-
  * Copyright (c) 2018 The NetBSD Foundation, Inc.
@@ -29,7 +29,8 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
-#if defined(__i386__) || defined(__x86_64__) || defined(__powerpc__) || defined(__sparc__)
+#if defined(__arm__) || defined(__i386__) || \
+	defined(__x86_64__) || defined(__powerpc__) || defined(__sparc__)
 #include <stdlib.h>
 #include <string.h>
 

Reply via email to