Common: add single header for all intrinsics
This commit is contained in:
parent
7a61bd5519
commit
56795efd42
|
@ -0,0 +1,15 @@
|
|||
// 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
|
Loading…
Reference in New Issue