aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/arc/bits
diff options
context:
space:
mode:
authorPavel Kozlov <pavel.kozlov@synopsys.com>2024-09-20 18:58:52 +0100
committerPavel Kozlov <pavel.kozlov@synopsys.com>2024-09-25 15:54:07 +0100
commitcc84cd389c7329ceb38228f931044e8c84ca7245 (patch)
treec3b8f1d2b158074261343eb84b82ec1cf5917e31 /sysdeps/arc/bits
parent4ff55d08df0e6f11cbd217f4dca4532bd7d9330d (diff)
downloadglibc-cc84cd389c7329ceb38228f931044e8c84ca7245.tar.xz
glibc-cc84cd389c7329ceb38228f931044e8c84ca7245.zip
arc: Cleanup arcbe
Remove the mention of arcbe ABI to avoid any mislead. ARC big endian ABI is no longer supported. Reviewed-by: Florian Weimer <fweimer@redhat.com>
Diffstat (limited to 'sysdeps/arc/bits')
-rw-r--r--sysdeps/arc/bits/endianness.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/sysdeps/arc/bits/endianness.h b/sysdeps/arc/bits/endianness.h
index 8f17ca84b4..4a6e7d4c15 100644
--- a/sysdeps/arc/bits/endianness.h
+++ b/sysdeps/arc/bits/endianness.h
@@ -5,11 +5,7 @@
# error "Never use <bits/endian.h> directly; include <endian.h> instead."
#endif
-/* ARC has selectable endianness. */
-#ifdef __BIG_ENDIAN__
-# define __BYTE_ORDER __BIG_ENDIAN
-#else
-# define __BYTE_ORDER __LITTLE_ENDIAN
-#endif
+/* Only little-endian ARC is supported. */
+#define __BYTE_ORDER __LITTLE_ENDIAN
#endif /* bits/endianness.h */