X-Git-Url: http://git.sourceforge.jp/view?a=blobdiff_plain;f=boehm-gc%2Fdarwin_stop_world.c;h=719b1b02d35ee474f7e4b0d9242c410fa59dc559;hb=a37dec0c0921c160e897661b1d32d47dc9b859d3;hp=5ddb271646ee76972a2b68d99fc9da6c00389e5b;hpb=886a341f3ff7c1a2dec9207e1a68d1ea18e50e73;p=pf3gnuchains%2Fgcc-fork.git diff --git a/boehm-gc/darwin_stop_world.c b/boehm-gc/darwin_stop_world.c index 5ddb271646e..719b1b02d35 100644 --- a/boehm-gc/darwin_stop_world.c +++ b/boehm-gc/darwin_stop_world.c @@ -20,19 +20,6 @@ # define PPC_RED_ZONE_SIZE 320 #endif -/* Try to work out the right way to access thread state structure members. - The structure has changed its definition in different Darwin versions. */ -/* This now defaults to the (older) names without __, thus hopefully */ -/* not breaking any existing Makefile.direct builds. */ -#if defined (HAS_PPC_THREAD_STATE___R0) || \ - defined (HAS_PPC_THREAD_STATE64___R0) || \ - defined (HAS_X86_THREAD_STATE32___EAX) || \ - defined (HAS_X86_THREAD_STATE64___RAX) -# define THREAD_FLD(x) __ ## x -#else -# define THREAD_FLD(x) x -#endif - typedef struct StackFrame { unsigned long savedSP; unsigned long savedCR;