From 3ec7bfc7c4ff9e217d2a24635751b74757635dd7 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 24 Mar 1998 16:24:39 +0000 Subject: Rename hppa1_1 to hppa1.1 and switched to using __XXX__ macros for the CPU family name constants. --- c/src/exec/score/cpu/unix/cpu.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'c/src/exec/score/cpu/unix/cpu.c') diff --git a/c/src/exec/score/cpu/unix/cpu.c b/c/src/exec/score/cpu/unix/cpu.c index e931775c54..428ae99c3b 100644 --- a/c/src/exec/score/cpu/unix/cpu.c +++ b/c/src/exec/score/cpu/unix/cpu.c @@ -174,7 +174,7 @@ void _CPU_Signal_initialize( void ) void _CPU_Context_From_CPU_Init() { -#if defined(hppa1_1) && defined(RTEMS_UNIXLIB_SETJMP) +#if defined(__hppa__) && defined(RTEMS_UNIXLIB_SETJMP) /* * HACK - set the _SYSTEM_ID to 0x20c so that setjmp/longjmp * will handle the full 32 floating point registers. @@ -474,7 +474,7 @@ void _CPU_Context_Initialize( addr = (unsigned32 *)_the_context; -#if defined(hppa1_1) +#if defined(__hppa__) *(addr + RP_OFF) = jmp_addr; *(addr + SP_OFF) = (unsigned32)(_stack_low + CPU_FRAME_SIZE); @@ -489,7 +489,7 @@ void _CPU_Context_Initialize( jmp_addr &= 0xfffffffc; *(addr + RP_OFF) = *(unsigned32 *)jmp_addr; } -#elif defined(sparc) +#elif defined(__sparc__) /* * See /usr/include/sys/stack.h in Solaris 2.3 for a nice @@ -502,7 +502,7 @@ void _CPU_Context_Initialize( *(addr + SP_OFF) = (unsigned32)(_stack_high - CPU_FRAME_SIZE); *(addr + FP_OFF) = (unsigned32)(_stack_high); -#elif defined(i386) || defined(__i386__) +#elif defined(__i386__) /* * This information was gathered by disassembling setjmp(). -- cgit v1.2.3