Merge pull request #7372 from lioncash/profiler
PowerPC: Remove Profiler.cpp
This commit is contained in:
commit
307d5d5482
|
@ -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…
Reference in New Issue