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:
arcum42 2009-04-19 20:34:32 +00:00
parent 1bc6795200
commit a2d305b9ab
1 changed files with 2 additions and 2 deletions

View File

@ -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?
};