Skip to content

Commit

Permalink
Fixed macos build.
Browse files Browse the repository at this point in the history
  • Loading branch information
vlutas committed May 7, 2024
1 parent 05d5632 commit 473eb0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bdshemu/bdshemu_x86.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
#include "../bddisasm/include/bddisasm_crt.h"
#include "include/bdshemu_common.h"

#if defined(ND_ARCH_X64) || defined(ND_ARCH_X86)
#ifdef __clang__
#include <wmmintrin.h>
#else
#if defined(ND_ARCH_X64) || defined(ND_ARCH_X86)
#include <immintrin.h>
#endif // defined(ND_ARCH_X64) || defined(ND_ARCH_X86)
#endif // __clang__
#endif // defined(ND_ARCH_X64) || defined(ND_ARCH_X86)

//
// A generic emulator value.
Expand Down

0 comments on commit 473eb0a

Please sign in to comment.