comparison src/os/bsd/vm/os_bsd.cpp @ 14390:0f03ff49c720

8016491: PPC64 (part 2): Clean up PPC defines. Summary: Distinguish PPC, PPC64 and PPC32. PPC should guard code needed on any PPC system. PPC32 and PPC64 should guard code needed in a port for the ppc64 or ppc32 instruction set. Reviewed-by: kvn
author goetz
date Wed, 19 Jun 2013 12:29:30 +0200
parents 9ce110b1d14a
children b5c8a61d7fa0
comparison
equal deleted inserted replaced
14389:164db61dbced 14390:0f03ff49c720
203 static char cpu_arch[] = "i386"; 203 static char cpu_arch[] = "i386";
204 #elif defined(AMD64) 204 #elif defined(AMD64)
205 static char cpu_arch[] = "amd64"; 205 static char cpu_arch[] = "amd64";
206 #elif defined(ARM) 206 #elif defined(ARM)
207 static char cpu_arch[] = "arm"; 207 static char cpu_arch[] = "arm";
208 #elif defined(PPC) 208 #elif defined(PPC32)
209 static char cpu_arch[] = "ppc"; 209 static char cpu_arch[] = "ppc";
210 #elif defined(SPARC) 210 #elif defined(SPARC)
211 # ifdef _LP64 211 # ifdef _LP64
212 static char cpu_arch[] = "sparcv9"; 212 static char cpu_arch[] = "sparcv9";
213 # else 213 # else