From e8f6ee80fbce708af7ddc6d15ac723346b4879d0 Mon Sep 17 00:00:00 2001 From: Armando Luiz Nicolini Delgado <nicolui@inf.ufpr.br> Date: Wed, 23 Mar 2022 14:49:06 -0300 Subject: [PATCH] /* * Nova macro para alinhamento em 64 bits */ --- utils/utils.h | 1 + 1 file changed, 1 insertion(+) diff --git a/utils/utils.h b/utils/utils.h index 8beffc8..acb7d5d 100644 --- a/utils/utils.h +++ b/utils/utils.h @@ -10,6 +10,7 @@ typedef double rtime_t; typedef char * string_t; // SIMD alignment macros +#define ALIGN_64 __attribute__((aligned(64))) #define ALIGN_32 __attribute__((aligned(32))) #define ALIGN_16 __attribute__((aligned(16))) -- GitLab