aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSverker Eriksson <[email protected]>2019-06-19 17:14:03 +0200
committerSverker Eriksson <[email protected]>2019-06-19 17:14:03 +0200
commit09e386cd37747c9f6634b061d75910a3e27f3f35 (patch)
treedccd82a74a9f9d4d3908f09a26f871a16c053507
parentf07240aa424b26b56271bbd88ffab999b9def02a (diff)
parent7416150deb000307d521c9f7564b76c188923ca3 (diff)
downloadotp-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.c3
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__*/