mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-02-21 20:00:32 -05:00
21 lines
398 B
C++
21 lines
398 B
C++
// Copyright 2013 Dolphin Emulator Project
|
|
// Licensed under GPLv2
|
|
// Refer to the license.txt file included.
|
|
|
|
#include <string>
|
|
#include "Core/PowerPC/JitInterface.h"
|
|
#include "Core/PowerPC/Profiler.h"
|
|
|
|
namespace Profiler
|
|
{
|
|
|
|
bool g_ProfileBlocks;
|
|
bool g_ProfileInstructions;
|
|
|
|
void WriteProfileResults(const std::string& filename)
|
|
{
|
|
JitInterface::WriteProfileResults(filename);
|
|
}
|
|
|
|
} // namespace
|