mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-26 23:34:54 +00:00
15 lines
230 B
C
15 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
|