mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-09-24 06:35:36 +08:00
powerpc: Fix _CPU_Instruction_illegal()
Apparently the .word assembler directive is not the right thing on this target.
This commit is contained in:
@@ -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 )
|
||||
|
||||
Reference in New Issue
Block a user