summaryrefslogtreecommitdiff
path: root/src/common/cpu_detect_generic.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2015-08-12 00:00:44 -0400
committerGravatar bunnei2015-08-15 18:03:25 -0400
commitbd7e691f78d916ed6ae5396b2d646d9b3a053dd7 (patch)
treea20367004f684afeca83e795ce66e62115e8e79d /src/common/cpu_detect_generic.cpp
parentJIT: Support negative address offsets. (diff)
downloadyuzu-bd7e691f78d916ed6ae5396b2d646d9b3a053dd7.tar.gz
yuzu-bd7e691f78d916ed6ae5396b2d646d9b3a053dd7.tar.xz
yuzu-bd7e691f78d916ed6ae5396b2d646d9b3a053dd7.zip
x64: Refactor to remove fake interfaces and general cleanups.
Diffstat (limited to '')
-rw-r--r--src/common/cpu_detect_generic.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/common/cpu_detect_generic.cpp b/src/common/cpu_detect_generic.cpp
deleted file mode 100644
index ccec324d9..000000000
--- a/src/common/cpu_detect_generic.cpp
+++ /dev/null
@@ -1,19 +0,0 @@
1// Copyright 2014 Dolphin Emulator Project
2// Licensed under GPLv2+
3// Refer to the license.txt file included.
4
5#include "cpu_detect.h"
6#include "hash.h"
7
8namespace Common {
9
10CPUInfo cpu_info;
11
12CPUInfo::CPUInfo() {
13}
14
15std::string CPUInfo::Summarize() {
16 return "Generic";
17}
18
19} // namespace Common