mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-01 19:31:09 +01:00
16 lines
230 B
C
16 lines
230 B
C
// Copyright 2015 Dolphin Emulator Project
|
|
// Licensed under GPLv2
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#ifdef _M_X86
|
|
|
|
#ifdef _MSC_VER
|
|
#include <intrin.h>
|
|
#else
|
|
#include <x86intrin.h>
|
|
#endif
|
|
|
|
#endif // _M_X86
|