General: Replace GC_ALIGN macros with alignas

Standard supported alignment -> out with compiler-specific.
This commit is contained in:
Lioncash
2015-09-05 11:44:21 -04:00
parent c08a83a5aa
commit 8ce04f9a65
19 changed files with 73 additions and 84 deletions

View File

@ -29,7 +29,7 @@ namespace PowerPC
{
// STATE_TO_SAVE
PowerPCState GC_ALIGNED16(ppcState);
PowerPCState ppcState;
static volatile CPUState state = CPU_POWERDOWN;
Interpreter * const interpreter = Interpreter::getInstance();