Skip to content

Commit

Permalink
enable x86 make
Browse files Browse the repository at this point in the history
  • Loading branch information
SadiinsoSnowfall committed Jul 8, 2024
1 parent 4d94ffe commit 399c2bc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions include/eve/detail/function/make.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ namespace eve

#include <eve/detail/function/simd/common/make.hpp>

// #if defined(EVE_INCLUDE_X86_HEADER)
// # include <eve/detail/function/simd/x86/make.hpp>
// #endif
#if defined(EVE_INCLUDE_X86_HEADER)
# include <eve/detail/function/simd/x86/make.hpp>
#endif

#if defined(EVE_INCLUDE_SVE_HEADER)
# include <eve/detail/function/simd/arm/sve/make.hpp>
Expand Down
2 changes: 1 addition & 1 deletion include/eve/detail/function/simd/x86/make.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace eve::detail
{
template<callable_options O, arithmetic_scalar_value T, typename N, typename V0, typename... Vs>
requires x86_abi<abi_t<T, N>>
EVE_FORCEINLINE auto make_(EVE_REQUIRES(sse2_), O const&, as<wide<T, N>> tgt, V0 v, Vs... vs) noexcept
EVE_FORCEINLINE auto make_(EVE_REQUIRES(sse2_), O const&, as<wide<T, N>>, V0 v, Vs... vs) noexcept
{
static_assert((sizeof...(Vs) + 1) <= N::value, "[eve::make] - Invalid number of arguments");

Expand Down

0 comments on commit 399c2bc

Please sign in to comment.