Removing alloy::tracing, as it's unused.

This commit is contained in:
Ben Vanik
2014-07-13 21:25:58 -07:00
parent 9437d0b564
commit 29e4c35c38
47 changed files with 17 additions and 872 deletions

View File

@@ -10,7 +10,6 @@
#include <xenia/cpu/xenon_runtime.h>
#include <alloy/frontend/ppc/ppc_frontend.h>
#include <alloy/runtime/tracing.h>
#include <xenia/cpu/xenon_thread_state.h>
@@ -27,10 +26,7 @@ XenonRuntime::XenonRuntime(
export_resolver_(export_resolver) {
}
XenonRuntime::~XenonRuntime() {
alloy::tracing::WriteEvent(EventType::Deinit({
}));
}
XenonRuntime::~XenonRuntime() = default;
int XenonRuntime::Initialize(std::unique_ptr<backend::Backend> backend) {
std::unique_ptr<PPCFrontend> frontend(new PPCFrontend(this));
@@ -41,8 +37,5 @@ int XenonRuntime::Initialize(std::unique_ptr<backend::Backend> backend) {
return result;
}
alloy::tracing::WriteEvent(EventType::Init({
}));
return result;
}