prevent gcc from doing alignment for stencil functions

This commit is contained in:
Nicolas 2025-11-11 15:48:03 +01:00
parent f345d02120
commit 821ad6e69b
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ op_signs = {'add': '+', 'sub': '-', 'mul': '*', 'div': '/', 'pow': '**',
'bwand': '&', 'bwor': '|', 'bwxor': '^'} 'bwand': '&', 'bwor': '|', 'bwxor': '^'}
entry_func_prefix = '' entry_func_prefix = ''
stencil_func_prefix = '' # Remove callee prolog stencil_func_prefix = '__attribute__((aligned(1))) ' # Remove function alignment for stencils
stack_size = 64 stack_size = 64