From 771b6bcf689bd089b802ddcdb27a40b4fb4a8e3b Mon Sep 17 00:00:00 2001 From: "chappedm@gmail.com" Date: Tue, 18 Sep 2012 00:52:13 +0000 Subject: issue-457: Fixed an issue where the 'getpc' testcase was using the wrong PPC64 preprocessor directive git-svn-id: http://gperftools.googlecode.com/svn/trunk@154 6b5cf1ce-ec42-a296-1ba9-69fdba395a50 --- src/tests/getpc_test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/getpc_test.cc b/src/tests/getpc_test.cc index f1497d5..1277636 100644 --- a/src/tests/getpc_test.cc +++ b/src/tests/getpc_test.cc @@ -106,7 +106,7 @@ int main(int argc, char** argv) { // ElfW(Addr) gp; /* global pointer */ // }; // We want the code entry point. -#if defined(__ia64) || defined(__ppc64) // NOTE: ppc64 is UNTESTED +#if defined(__ia64) || defined(__powerpc64__) // NOTE: ppc64 is UNTESTED expected = ((char**)expected)[0]; // this is "ip" #endif -- cgit v1.2.1