mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 08:09:26 +01:00
PowerPC: Remove Profiler.cpp
With 7aa305ea358ee1574f1036493411aa2cdf86458f 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:
parent
f7b334817d
commit
36b24bf7a0
@ -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
|
||||
|
@ -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" />
|
||||
|
@ -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>
|
||||
|
@ -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
|
@ -34,5 +34,4 @@ struct ProfileStats
|
||||
u64 countsPerSec;
|
||||
};
|
||||
|
||||
void WriteProfileResults(const std::string& filename);
|
||||
} // namespace Profiler
|
||||
|
Loading…
x
Reference in New Issue
Block a user