summaryrefslogtreecommitdiffstats
path: root/src/common/x64
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-08-12 06:19:20 +0200
committerbunnei <bunneidev@gmail.com>2015-08-16 00:03:26 +0200
commita1942238f5046811833e9636c64f991905960732 (patch)
tree47de97e98aa464cee8e9297f419ac99c289a2293 /src/common/x64
parentx64: Refactor to remove fake interfaces and general cleanups. (diff)
downloadyuzu-a1942238f5046811833e9636c64f991905960732.tar
yuzu-a1942238f5046811833e9636c64f991905960732.tar.gz
yuzu-a1942238f5046811833e9636c64f991905960732.tar.bz2
yuzu-a1942238f5046811833e9636c64f991905960732.tar.lz
yuzu-a1942238f5046811833e9636c64f991905960732.tar.xz
yuzu-a1942238f5046811833e9636c64f991905960732.tar.zst
yuzu-a1942238f5046811833e9636c64f991905960732.zip
Diffstat (limited to '')
-rw-r--r--src/common/x64/cpu_detect.cpp (renamed from src/common/cpu_detect.cpp)4
-rw-r--r--src/common/x64/cpu_detect.h (renamed from src/common/cpu_detect.h)0
-rw-r--r--src/common/x64/emitter.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/common/cpu_detect.cpp b/src/common/x64/cpu_detect.cpp
index 1d612829e..72c8297a3 100644
--- a/src/common/cpu_detect.cpp
+++ b/src/common/x64/cpu_detect.cpp
@@ -5,9 +5,9 @@
#include <cstring>
#include <string>
-#include "common_types.h"
+#include "common/common_types.h"
+
#include "cpu_detect.h"
-#include "hash.h"
#ifndef _WIN32
diff --git a/src/common/cpu_detect.h b/src/common/x64/cpu_detect.h
index 19a2c25d6..19a2c25d6 100644
--- a/src/common/cpu_detect.h
+++ b/src/common/x64/cpu_detect.h
diff --git a/src/common/x64/emitter.cpp b/src/common/x64/emitter.cpp
index 4e1c43d6c..5463841d7 100644
--- a/src/common/x64/emitter.cpp
+++ b/src/common/x64/emitter.cpp
@@ -18,11 +18,11 @@
#include <cstring>
#include "common/assert.h"
-#include "common/cpu_detect.h"
#include "common/logging/log.h"
#include "common/memory_util.h"
#include "abi.h"
+#include "cpu_detect.h"
#include "emitter.h"
#define PRIx64 "llx"