mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
Common: add single header for all intrinsics
This commit is contained in:
parent
7a61bd5519
commit
56795efd42
15
Source/Core/Common/Intrinsics.h
Normal file
15
Source/Core/Common/Intrinsics.h
Normal file
@ -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
Block a user