aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMartin Liska <mliska@suse.cz>2020-04-01 02:36:11 -0700
committerH.J. Lu <hjl.tools@gmail.com>2020-04-01 02:36:11 -0700
commit40bd13ced9c03c74af9d55a98d6e06ddcf11429c (patch)
tree845de29820c1141061e5237932ecc76f82e6d21f /include
parent41ff29bf5db04b989e6b2b627ee1ca2a9f5b6a09 (diff)
downloadbinutils-40bd13ced9c03c74af9d55a98d6e06ddcf11429c.zip
binutils-40bd13ced9c03c74af9d55a98d6e06ddcf11429c.tar.gz
binutils-40bd13ced9c03c74af9d55a98d6e06ddcf11429c.tar.bz2
include: Sync plugin-api.h with GCC
Fix typo in a macro usage. PR lto/94249 * plugin-api.h: Fix a typo.
Diffstat (limited to 'include')
-rw-r--r--include/ChangeLog6
-rw-r--r--include/plugin-api.h2
2 files changed, 7 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index f9d4101..65107bd 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,9 @@
+2020-04-01 Martin Liska <mliska@suse.cz>
+ Maciej W. Rozycki <macro@linux-mips.org>
+
+ PR lto/94249
+ * plugin-api.h: Fix a typo.
+
2020-03-30 Nelson Chu <nelson.chu@sifive.com>
* opcode/riscv-opc.h: Update CSR to 1.11.
diff --git a/include/plugin-api.h b/include/plugin-api.h
index 864d2bf..e317d78 100644
--- a/include/plugin-api.h
+++ b/include/plugin-api.h
@@ -51,7 +51,7 @@
/* Older GCC releases (<4.6.0) can make detection from glibc macros. */
#if defined(__GLIBC__) || defined(__GNU_LIBRARY__) || defined(__ANDROID__)
#include <endian.h>
-#ifdef _BYTE_ORDER
+#ifdef __BYTE_ORDER
#if __BYTE_ORDER == __LITTLE_ENDIAN
#define PLUGIN_LITTLE_ENDIAN 1
#elif __BYTE_ORDER == __BIG_ENDIAN