summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorGravatar Lioncash2016-03-09 02:20:00 -0500
committerGravatar Lioncash2016-03-09 02:20:00 -0500
commit450c84c9906185dfa0ae47b68a03361d7f0187e7 (patch)
treec6592f3f508ecc3fc2be60fbea38e420599f9c57 /src/common
parentMerge pull request #1441 from MerryMage/dsp-pipes (diff)
downloadyuzu-450c84c9906185dfa0ae47b68a03361d7f0187e7.tar.gz
yuzu-450c84c9906185dfa0ae47b68a03361d7f0187e7.tar.xz
yuzu-450c84c9906185dfa0ae47b68a03361d7f0187e7.zip
emitter: Remove unimplemented prototype
Diffstat (limited to 'src/common')
-rw-r--r--src/common/x64/emitter.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/common/x64/emitter.h b/src/common/x64/emitter.h
index 2dd0dc94e..05a269859 100644
--- a/src/common/x64/emitter.h
+++ b/src/common/x64/emitter.h
@@ -175,7 +175,6 @@ struct OpArg
175 void WriteRex(XEmitter *emit, int opBits, int bits, int customOp = -1) const; 175 void WriteRex(XEmitter *emit, int opBits, int bits, int customOp = -1) const;
176 void WriteVex(XEmitter* emit, X64Reg regOp1, X64Reg regOp2, int L, int pp, int mmmmm, int W = 0) const; 176 void WriteVex(XEmitter* emit, X64Reg regOp1, X64Reg regOp2, int L, int pp, int mmmmm, int W = 0) const;
177 void WriteRest(XEmitter *emit, int extraBytes=0, X64Reg operandReg=INVALID_REG, bool warn_64bit_offset = true) const; 177 void WriteRest(XEmitter *emit, int extraBytes=0, X64Reg operandReg=INVALID_REG, bool warn_64bit_offset = true) const;
178 void WriteFloatModRM(XEmitter *emit, FloatOp op);
179 void WriteSingleByteOp(XEmitter *emit, u8 op, X64Reg operandReg, int bits); 178 void WriteSingleByteOp(XEmitter *emit, u8 op, X64Reg operandReg, int bits);
180 // This one is public - must be written to 179 // This one is public - must be written to
181 u64 offset; // use RIP-relative as much as possible - 64-bit immediates are not available. 180 u64 offset; // use RIP-relative as much as possible - 64-bit immediates are not available.