PowerPC: Remove Profiler.cpp

With 7aa305ea35 merged, all that remains
within Profiler.cpp is an unused function that just forwards to the
equivalent function within JitInterface. Given that, we can just remove
the source file.
This commit is contained in:
Lioncash 2018-08-27 12:13:37 -04:00
parent f7b334817d
commit 36b24bf7a0
5 changed files with 0 additions and 24 deletions

View file

@ -202,7 +202,6 @@ add_library(core
PowerPC/PPCCache.cpp
PowerPC/PPCSymbolDB.cpp
PowerPC/PPCTables.cpp
PowerPC/Profiler.cpp
PowerPC/SignatureDB/CSVSignatureDB.cpp
PowerPC/SignatureDB/DSYSignatureDB.cpp
PowerPC/SignatureDB/MEGASignatureDB.cpp

View file

@ -295,7 +295,6 @@
<ClCompile Include="PowerPC\PPCCache.cpp" />
<ClCompile Include="PowerPC\PPCSymbolDB.cpp" />
<ClCompile Include="PowerPC\PPCTables.cpp" />
<ClCompile Include="PowerPC\Profiler.cpp" />
<ClCompile Include="State.cpp" />
<ClCompile Include="SysConf.cpp" />
<ClCompile Include="TitleDatabase.cpp" />

View file

@ -633,9 +633,6 @@
<ClCompile Include="PowerPC\PPCTables.cpp">
<Filter>PowerPC</Filter>
</ClCompile>
<ClCompile Include="PowerPC\Profiler.cpp">
<Filter>PowerPC</Filter>
</ClCompile>
<ClCompile Include="PowerPC\JitCommon\JitAsmCommon.cpp">
<Filter>PowerPC\JitCommon</Filter>
</ClCompile>

View file

@ -1,18 +0,0 @@
// Copyright 2008 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#include "Core/PowerPC/Profiler.h"
#include <string>
#include "Common/PerformanceCounter.h"
#include "Core/PowerPC/JitInterface.h"
namespace Profiler
{
void WriteProfileResults(const std::string& filename)
{
JitInterface::WriteProfileResults(filename);
}
} // namespace Profiler

View file

@ -34,5 +34,4 @@ struct ProfileStats
u64 countsPerSec;
};
void WriteProfileResults(const std::string& filename);
} // namespace Profiler