summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2017-10-29 14:50:10 +0000
committerMichael Drake <michael.drake@codethink.co.uk>2017-10-29 14:50:10 +0000
commitea7da966de05e5f372997f8969f64685f732a6a0 (patch)
treea9f256060dac65522ee3cea53ae2c11a7fbc6e6a /content
parent6619be2b72820b40c8afe95fcf9cabb45d85130d (diff)
downloadnetsurf-ea7da966de05e5f372997f8969f64685f732a6a0.tar.gz
netsurf-ea7da966de05e5f372997f8969f64685f732a6a0.tar.bz2
Duktape: Another attempt to squash aarch64 increases required alignment warnings.
Diffstat (limited to 'content')
-rw-r--r--content/handlers/javascript/duktape/duktape.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/content/handlers/javascript/duktape/duktape.c b/content/handlers/javascript/duktape/duktape.c
index 0bde7d41c..5e3b467f9 100644
--- a/content/handlers/javascript/duktape/duktape.c
+++ b/content/handlers/javascript/duktape/duktape.c
@@ -6664,9 +6664,7 @@ struct duk_hobject {
#endif
#endif
}
-#if (DUK_USE_ALIGN_BY == 8) && defined(DUK_USE_PACK_GCC_ATTR)
-__attribute__ ((aligned (8)))
-#elif (DUK_USE_ALIGN_BY == 8) && defined(DUK_USE_PACK_CLANG_ATTR)
+#if (DUK_USE_ALIGN_BY == 8)
__attribute__ ((aligned (8)))
#endif
;