Two minor cosmetic fixes from the __aligned switchover.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1960 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
Jake.Stine 2009-10-05 02:25:54 +00:00
parent 6412271470
commit 75d3c053ef
2 changed files with 2 additions and 2 deletions

View File

@ -408,7 +408,7 @@ __forceinline void xWrite( T val )
Displacement += imm; Displacement += imm;
return *this; return *this;
} }
__noinline
__forceinline ModSibStrict<OperandType> operator+( const s32 imm ) const { return ModSibStrict<OperandType>( *this ).Add( imm ); } __forceinline ModSibStrict<OperandType> operator+( const s32 imm ) const { return ModSibStrict<OperandType>( *this ).Add( imm ); }
__forceinline ModSibStrict<OperandType> operator-( const s32 imm ) const { return ModSibStrict<OperandType>( *this ).Add( -imm ); } __forceinline ModSibStrict<OperandType> operator-( const s32 imm ) const { return ModSibStrict<OperandType>( *this ).Add( -imm ); }

View File

@ -243,7 +243,7 @@ namespace vtlb_private
// If it were smaller than a page we'd end up allowing execution rights on some // If it were smaller than a page we'd end up allowing execution rights on some
// other vars additionally (bad!). // other vars additionally (bad!).
// //
static __aligned(0x1000) u8 m_IndirectDispatchers[0x1000]; static __pagealigned u8 m_IndirectDispatchers[0x1000];
// ------------------------------------------------------------------------ // ------------------------------------------------------------------------
// mode - 0 for read, 1 for write! // mode - 0 for read, 1 for write!