about summary refs log tree commit diff
path: root/sysdeps/arc/bits/endianness.h
diff options
context:
space:
mode:
authorVineet Gupta <vgupta@synopsys.com>2018-10-23 11:38:32 -0700
committerVineet Gupta <vgupta@synopsys.com>2020-07-10 16:08:44 -0700
commit0e7d930c4c11de896fe807f67fa1eb756c9c1e05 (patch)
treea2ac4ff092909d6071a8ddb6e37c9c6c0ad31d38 /sysdeps/arc/bits/endianness.h
parent04deeaa9ea74b0679dfc9d9155a37b6425f19a9f (diff)
downloadglibc-0e7d930c4c11de896fe807f67fa1eb756c9c1e05.tar.gz
glibc-0e7d930c4c11de896fe807f67fa1eb756c9c1e05.tar.xz
glibc-0e7d930c4c11de896fe807f67fa1eb756c9c1e05.zip
ARC: ABI Implementation
This code deals with the ARC ABI.

Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
Diffstat (limited to 'sysdeps/arc/bits/endianness.h')
-rw-r--r--sysdeps/arc/bits/endianness.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/sysdeps/arc/bits/endianness.h b/sysdeps/arc/bits/endianness.h
new file mode 100644
index 0000000000..8f17ca84b4
--- /dev/null
+++ b/sysdeps/arc/bits/endianness.h
@@ -0,0 +1,15 @@
+#ifndef _BITS_ENDIANNESS_H
+#define _BITS_ENDIANNESS_H 1
+
+#ifndef _BITS_ENDIAN_H
+# 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
+
+#endif /* bits/endianness.h */