From ea7da966de05e5f372997f8969f64685f732a6a0 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sun, 29 Oct 2017 14:50:10 +0000 Subject: Duktape: Another attempt to squash aarch64 increases required alignment warnings. --- content/handlers/javascript/duktape/duktape.c | 4 +--- 1 file changed, 1 insertion(+), 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 ; -- cgit v1.2.3