Common: add single header for all intrinsics

This commit is contained in:
Tillmann Karras 2015-02-22 21:30:43 +01:00
parent 7a61bd5519
commit 56795efd42
1 changed files with 15 additions and 0 deletions

View 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