mirror of https://github.com/PCSX2/pcsx2.git
The things Visual C++ lets you get away with...
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1022 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
1bc6795200
commit
a2d305b9ab
|
@ -134,7 +134,7 @@ public:
|
|||
writeXMMop( 0x66, Opcode, to, from );
|
||||
}
|
||||
template< typename T >
|
||||
__noinline void operator()( const iRegisterSIMD<T>&, const ModSibBase& from ) const { writeXMMop( 0x66, Opcode, to, from ); }
|
||||
__noinline void operator()( const iRegisterSIMD<T>& to, const ModSibBase& from ) const { writeXMMop( 0x66, Opcode, to, from ); }
|
||||
|
||||
PLogicImplAll() {} //GCWho?
|
||||
};
|
||||
|
@ -153,7 +153,7 @@ public:
|
|||
{
|
||||
writeXMMop( Prefix, Opcode, to, from );
|
||||
}
|
||||
__noinline void operator()( const iRegisterSSE&, const ModSibBase& from ) const { writeXMMop( Prefix, Opcode, to, from ); }
|
||||
__noinline void operator()( const iRegisterSSE& to, const ModSibBase& from ) const { writeXMMop( Prefix, Opcode, to, from ); }
|
||||
|
||||
PLogicImplSSE() {} //GCWho?
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue