Skip to content

Commit

Permalink
Fix stack alignment (alloca) for generic256.
Browse files Browse the repository at this point in the history
  • Loading branch information
rdolbeau committed Apr 16, 2015
1 parent 96eb0ad commit d2ea399
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/ifftw.h
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ typedef struct scanner_s scanner;
#if HAVE_SIMD
# if defined(HAVE_KCVI) || defined(HAVE_AVX512)
# define MIN_ALIGNMENT 64
# elif defined(HAVE_AVX) || defined(HAVE_AVX2)
# elif defined(HAVE_AVX) || defined(HAVE_AVX2) || defined(HAVE_GENERIC_SIMD256)
# define MIN_ALIGNMENT 32 /* best alignment for AVX, conservative for
* everything else */
# else
Expand Down

0 comments on commit d2ea399

Please sign in to comment.