comparison src/os/linux/vm/os_linux.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 d2907f74462e
comparison
equal deleted inserted replaced
14389:164db61dbced 14390:0f03ff49c720
245 static char cpu_arch[] = "i386"; 245 static char cpu_arch[] = "i386";
246 #elif defined(AMD64) 246 #elif defined(AMD64)
247 static char cpu_arch[] = "amd64"; 247 static char cpu_arch[] = "amd64";
248 #elif defined(ARM) 248 #elif defined(ARM)
249 static char cpu_arch[] = "arm"; 249 static char cpu_arch[] = "arm";
250 #elif defined(PPC) 250 #elif defined(PPC32)
251 static char cpu_arch[] = "ppc"; 251 static char cpu_arch[] = "ppc";
252 #elif defined(SPARC) 252 #elif defined(SPARC)
253 # ifdef _LP64 253 # ifdef _LP64
254 static char cpu_arch[] = "sparcv9"; 254 static char cpu_arch[] = "sparcv9";
255 # else 255 # else