diff options
Diffstat (limited to 'vppinfra/vppinfra/test_longjmp.c')
-rw-r--r-- | vppinfra/vppinfra/test_longjmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vppinfra/vppinfra/test_longjmp.c b/vppinfra/vppinfra/test_longjmp.c index 40b144080b6..299de258c2a 100644 --- a/vppinfra/vppinfra/test_longjmp.c +++ b/vppinfra/vppinfra/test_longjmp.c @@ -92,7 +92,7 @@ static uword f3 (uword arg) static void test_calljmp (unformat_input_t * input) { - static u8 stack[32*1024]; + static u8 stack[32*1024] __attribute__((aligned(16))); uword v; v = clib_calljmp (f3, 0, stack + sizeof (stack)); |