From 25fd27e36893aa9b5b8412faa8fcb41614059a45 Mon Sep 17 00:00:00 2001 From: Yang Chen Date: Wed, 23 Nov 2011 14:29:28 -0700 Subject: [PATCH] Choose PPC's readtime function for powerpc64 Previously we only accept powerpc as TARGET_CPU. I just made powerpc64 recognizable. Hopefully this could fix the problem mentioned by Shakthi Kannan that Csmith failed to build on pcc64. --- src/platform.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platform.cpp b/src/platform.cpp index 6baf30cc4..be456f7de 100644 --- a/src/platform.cpp +++ b/src/platform.cpp @@ -44,7 +44,7 @@ #include "platform.h" -#if (TARGET_CPU_powerpc == 1) +#if (TARGET_CPU_powerpc == 1 || TARGET_CPU_powerpc64 == 1) /*For PPC, got from: http://lists.ozlabs.org/pipermail/linuxppc-dev/1999-October/003889.html */