powerpc: Fix _CPU_Instruction_illegal()

Apparently the .word assembler directive is not the right thing on this
target.
This commit is contained in:
Sebastian Huber
2018-07-25 10:07:42 +02:00
parent caccc5bfc6
commit 05259de1c9
@@ -244,7 +244,7 @@ void _CPU_Context_validate( uintptr_t pattern );
RTEMS_INLINE_ROUTINE void _CPU_Instruction_illegal( void )
{
__asm__ volatile ( ".word 0" );
__asm__ volatile ( ".long 0" );
}
RTEMS_INLINE_ROUTINE void _CPU_Instruction_no_operation( void )