diff options
author | Martin Liska <mliska@suse.cz> | 2020-04-01 09:37:37 +0200 |
---|---|---|
committer | Martin Liska <mliska@suse.cz> | 2020-04-01 09:37:37 +0200 |
commit | 142d68f50b48309f48e34fc1d9d6dbbeecfde684 (patch) | |
tree | 0cb46f3740ce6e073ff07af93284a0cbe82e0735 /include/plugin-api.h | |
parent | bd0f22a8d5caea8905f38ff1fafce31c1b7d33ad (diff) | |
download | gcc-142d68f50b48309f48e34fc1d9d6dbbeecfde684.zip gcc-142d68f50b48309f48e34fc1d9d6dbbeecfde684.tar.gz gcc-142d68f50b48309f48e34fc1d9d6dbbeecfde684.tar.bz2 |
Fix typo in a macro usage.
PR lto/94249
* plugin-api.h: Fix a typo.
Diffstat (limited to 'include/plugin-api.h')
-rw-r--r-- | include/plugin-api.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 |