diff options
author | Sverker Eriksson <[email protected]> | 2019-06-19 17:14:03 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2019-06-19 17:14:03 +0200 |
commit | 09e386cd37747c9f6634b061d75910a3e27f3f35 (patch) | |
tree | dccd82a74a9f9d4d3908f09a26f871a16c053507 | |
parent | f07240aa424b26b56271bbd88ffab999b9def02a (diff) | |
parent | 7416150deb000307d521c9f7564b76c188923ca3 (diff) | |
download | otp-09e386cd37747c9f6634b061d75910a3e27f3f35.tar.gz otp-09e386cd37747c9f6634b061d75910a3e27f3f35.tar.bz2 otp-09e386cd37747c9f6634b061d75910a3e27f3f35.zip |
Merge branch 'sverker/fix-hipe-arm-old-gcc-error' into maint
-rw-r--r-- | erts/emulator/hipe/hipe_arm.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/erts/emulator/hipe/hipe_arm.c b/erts/emulator/hipe/hipe_arm.c index c5e2af0b5e..3e1d7e4d5e 100644 --- a/erts/emulator/hipe/hipe_arm.c +++ b/erts/emulator/hipe/hipe_arm.c @@ -18,6 +18,7 @@ * %CopyrightEnd% */ +#ifdef __arm__ #include <stddef.h> /* offsetof() */ #ifdef HAVE_CONFIG_H @@ -285,3 +286,5 @@ void hipe_arch_print_pcb(struct hipe_process_state *p) U("narity ", narity); #undef U } + +#endif /*__arm__*/ |