Rebase fixes

This commit is contained in:
Dani Messerman 2015-05-10 22:44:17 +03:00
parent 03527aba71
commit aa830b5cf3
6 changed files with 5 additions and 3 deletions

2
externals/nihstro vendored

@ -1 +1 @@
Subproject commit 4a78588b308564f7ebae193e0ae00d9a0d5741d5
Subproject commit 81f1804a43f625e3a1a20752c0db70a413410380

View File

@ -2,6 +2,7 @@
#include "ModuleGen.h"
#include "core/loader/loader.h"
#include "common/logging/log.h"
#include <llvm/Support/TargetSelect.h>
#include <llvm/Support/Host.h>

View File

@ -5,6 +5,7 @@
#include "Instructions/Instruction.h"
#include "Instructions/Types.h"
#include "InstructionBlock.h"
#include "common/logging/log.h"
#include <llvm/IR/Function.h>
#include <llvm/IR/GlobalVariable.h>
#include <stack>

View File

@ -3687,7 +3687,7 @@ unsigned InterpreterMainLoop(ARMul_State* cpu) {
Common::Profiling::ScopeTimer timer_execute(profile_execute);
#if ENABLE_BINARY_TRANSLATION
BinaryTranslationLoader::SetCpuState(state);
BinaryTranslationLoader::SetCpuState(cpu);
#endif
#undef RM

View File

@ -1,5 +1,6 @@
#include "BinaryTranslationLoader.h"
#include "core/arm/skyeye_common/armdefs.h"
#include "common/logging/log.h"
#include <llvm/Support/TargetSelect.h>
#include <llvm/ADT/STLExtras.h>
#include <llvm/Support/MemoryBuffer.h>

View File

@ -1,4 +1,3 @@
#include "common/common.h"
#include "common/file_util.h"
#include <memory>