summaryrefslogtreecommitdiff
path: root/src/common/x64/emitter.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/common/x64/emitter.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/common/x64/emitter.cpp b/src/common/x64/emitter.cpp
index 7cf350b4a..b69e4bd5e 100644
--- a/src/common/x64/emitter.cpp
+++ b/src/common/x64/emitter.cpp
@@ -15,16 +15,14 @@
15// Official SVN repository and contact information can be found at 15// Official SVN repository and contact information can be found at
16// http://code.google.com/p/dolphin-emu/ 16// http://code.google.com/p/dolphin-emu/
17 17
18#include "emitter.h"
18#include <cinttypes> 19#include <cinttypes>
19#include <cstring> 20#include <cstring>
20 21#include "abi.h"
21#include "common/assert.h" 22#include "common/assert.h"
22#include "common/logging/log.h" 23#include "common/logging/log.h"
23#include "common/memory_util.h" 24#include "common/memory_util.h"
24
25#include "abi.h"
26#include "cpu_detect.h" 25#include "cpu_detect.h"
27#include "emitter.h"
28 26
29namespace Gen { 27namespace Gen {
30 28
@@ -222,7 +220,7 @@ void OpArg::WriteVex(XEmitter* emit, X64Reg regOp1, X64Reg regOp2, int L, int pp
222void OpArg::WriteRest(XEmitter* emit, int extraBytes, X64Reg _operandReg, 220void OpArg::WriteRest(XEmitter* emit, int extraBytes, X64Reg _operandReg,
223 bool warn_64bit_offset) const { 221 bool warn_64bit_offset) const {
224 if (_operandReg == INVALID_REG) 222 if (_operandReg == INVALID_REG)
225 _operandReg = (X64Reg)this->operandReg; 223 _operandReg = (X64Reg) this->operandReg;
226 int mod = 0; 224 int mod = 0;
227 int ireg = indexReg; 225 int ireg = indexReg;
228 bool SIB = false; 226 bool SIB = false;