mirror of https://github.com/PCSX2/pcsx2.git
Linux: Compilation fixes / project file updates.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2143 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
2b5964199c
commit
c2143a9b7a
|
@ -84,6 +84,8 @@
|
|||
<Unit filename="../../include/x86emitter/implement/simd_arithmetic.h" />
|
||||
<Unit filename="../../include/x86emitter/implement/simd_comparisons.h" />
|
||||
<Unit filename="../../include/x86emitter/implement/simd_helpers.h" />
|
||||
<Unit filename="../../include/x86emitter/implement/simd_moremovs.h" />
|
||||
<Unit filename="../../include/x86emitter/implement/simd_shufflepack.h" />
|
||||
<Unit filename="../../include/x86emitter/implement/simd_templated_helpers.h" />
|
||||
<Unit filename="../../include/x86emitter/implement/test.h" />
|
||||
<Unit filename="../../include/x86emitter/implement/xchg.h" />
|
||||
|
@ -104,9 +106,11 @@
|
|||
<Unit filename="../../src/x86emitter/PrecompiledHeader.h" />
|
||||
<Unit filename="../../src/x86emitter/cpudetect.cpp" />
|
||||
<Unit filename="../../src/x86emitter/fpu.cpp" />
|
||||
<Unit filename="../../src/x86emitter/groups.cpp" />
|
||||
<Unit filename="../../src/x86emitter/jmp.cpp" />
|
||||
<Unit filename="../../src/x86emitter/legacy.cpp" />
|
||||
<Unit filename="../../src/x86emitter/legacy_sse.cpp" />
|
||||
<Unit filename="../../src/x86emitter/movs.cpp" />
|
||||
<Unit filename="../../src/x86emitter/simd.cpp" />
|
||||
<Unit filename="../../src/x86emitter/tools.cpp" />
|
||||
<Unit filename="../../src/x86emitter/x86emitter.cpp" />
|
||||
|
|
|
@ -223,7 +223,7 @@ template< typename SrcType >
|
|||
static void _imul_ImmStyle( const xRegisterInt& param1, const SrcType& param2, int imm )
|
||||
{
|
||||
// for iMul OpSize is allowed to be 16 or 32 bit only.
|
||||
const int OpSize = param1.GetOperandSize();
|
||||
const uint OpSize = param1.GetOperandSize();
|
||||
|
||||
pxAssert( OpSize == param2.GetOperandSize() );
|
||||
pxAssert( OpSize > 1 );
|
||||
|
|
|
@ -780,7 +780,7 @@ void xImpl_DwordShift::operator()( const ModSibBase& dest, const xRegister16or32
|
|||
xOpWrite0F( (from->GetOperandSize() == 2) ? 0x66 : 0x00, OpcodeBase, from, dest, shiftcnt );
|
||||
}
|
||||
|
||||
const xImpl_Test xTEST;
|
||||
const xImpl_Test xTEST = { };
|
||||
|
||||
const xImpl_BitScan xBSF = { 0xbc };
|
||||
const xImpl_BitScan xBSR = { 0xbd };
|
||||
|
|
Loading…
Reference in New Issue