From 56795efd425fdbd080deeb0469f518c96bcc0eac Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Sun, 22 Feb 2015 21:30:43 +0100 Subject: [PATCH] Common: add single header for all intrinsics --- Source/Core/Common/Intrinsics.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Source/Core/Common/Intrinsics.h 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 +#else +#include +#endif + +#endif // _M_X86