diff options
| author | Tillmann Karras <tilkax@gmail.com> | 2014-08-20 02:54:30 +0200 |
|---|---|---|
| committer | Tillmann Karras <tilkax@gmail.com> | 2014-08-20 02:54:30 +0200 |
| commit | a363f4fa3ee5712750078092abbeeebeeb211a9c (patch) | |
| tree | 3a387e41df7618ea61b1850f759e2aac3355992a /Source/Core/Common/x64Emitter.cpp | |
| parent | a09cf1d8f1bdc58de56b8fbb2d2282b8e59d2e69 (diff) | |
x64Emitter: make 'packed' parameter a bool
Diffstat (limited to 'Source/Core/Common/x64Emitter.cpp')
| -rw-r--r-- | Source/Core/Common/x64Emitter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/x64Emitter.cpp b/Source/Core/Common/x64Emitter.cpp index 206a48196e..6a04e2b20d 100644 --- a/Source/Core/Common/x64Emitter.cpp +++ b/Source/Core/Common/x64Emitter.cpp @@ -151,7 +151,7 @@ void OpArg::WriteRex(XEmitter *emit, int opBits, int bits, int customOp) const } } -void OpArg::WriteVex(XEmitter* emit, int size, int packed, Gen::X64Reg regOp1, Gen::X64Reg regOp2) const +void OpArg::WriteVex(XEmitter* emit, int size, bool packed, Gen::X64Reg regOp1, Gen::X64Reg regOp2) const { int R = !(regOp1 & 8); int X = !(indexReg & 8); |
