Browse Source

Use pmmintrin.h header instead of x86intrin.h.

tags/v1.0.0
Andrew Belt 5 years ago
parent
commit
0c08a8d1c8
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      include/simd/sse_mathfun.h
  2. +1
    -1
      include/simd/vector.hpp

+ 1
- 1
include/simd/sse_mathfun.h View File

@@ -45,7 +45,7 @@ This derived source file is released under the zlib license.
*/ */




#include <x86intrin.h>
#include <pmmintrin.h>




/** Generate 1.f without accessing memory */ /** Generate 1.f without accessing memory */


+ 1
- 1
include/simd/vector.hpp View File

@@ -1,6 +1,6 @@
#pragma once #pragma once
#include <cstring> #include <cstring>
#include <x86intrin.h>
#include <pmmintrin.h>
#include <type_traits> #include <type_traits>






Loading…
Cancel
Save