diff --git a/meson.build b/meson.build index b537dbe50..152e02d15 100644 --- a/meson.build +++ b/meson.build @@ -25,6 +25,8 @@ simde_neon_families = [ 'bcax', 'bic', 'bsl', + 'cadd_rot270', + 'cadd_rot90', 'cage', 'cagt', 'ceq', @@ -40,6 +42,10 @@ simde_neon_families = [ 'cltz', 'clz', 'cmla', + 'cmla_lane', + 'cmla_rot180_lane', + 'cmla_rot270_lane', + 'cmla_rot90_lane', 'cmla_rot90', 'cmla_rot180', 'cmla_rot270', diff --git a/simde/arm/neon.h b/simde/arm/neon.h index 634abc122..eb71abe83 100644 --- a/simde/arm/neon.h +++ b/simde/arm/neon.h @@ -46,6 +46,8 @@ #include "neon/bcax.h" #include "neon/bic.h" #include "neon/bsl.h" +#include "neon/cadd_rot270.h" +#include "neon/cadd_rot90.h" #include "neon/cage.h" #include "neon/cagt.h" #include "neon/ceq.h" @@ -61,6 +63,10 @@ #include "neon/cltz.h" #include "neon/clz.h" #include "neon/cmla.h" +#include "neon/cmla_lane.h" +#include "neon/cmla_rot180_lane.h" +#include "neon/cmla_rot270_lane.h" +#include "neon/cmla_rot90_lane.h" #include "neon/cmla_rot90.h" #include "neon/cmla_rot180.h" #include "neon/cmla_rot270.h"