diff options
| author | Tillmann Karras <tilkax@gmail.com> | 2015-02-22 21:30:43 +0100 |
|---|---|---|
| committer | Tillmann Karras <tilkax@gmail.com> | 2015-02-24 01:01:10 +0100 |
| commit | 56795efd425fdbd080deeb0469f518c96bcc0eac (patch) | |
| tree | 8d9513b1c13656c3fd5497618fb68669f05b02cc /Source/Core | |
| parent | 7a61bd5519ccc7a648376f4c6b9a5ab2ca3c75da (diff) | |
Common: add single header for all intrinsics
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Common/Intrinsics.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Source/Core/Common/Intrinsics.h b/Source/Core/Common/Intrinsics.h new file mode 100644 index 0000000000..6847387615 --- /dev/null +++ b/Source/Core/Common/Intrinsics.h @@ -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 |
