From: David Edelsohn Date: Thu, 7 Nov 2002 00:24:48 +0000 (+0000) Subject: * testsuite/abi_check.cc: Add guards to prevent -mpower ICE. X-Git-Tag: releases/gcc-3.2.1~49 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1895e75ccc316695e47ce4d0dc8a81171674cefb;p=thirdparty%2Fgcc.git * testsuite/abi_check.cc: Add guards to prevent -mpower ICE. From-SVN: r58872 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 6ee025e5e3ce..8ff194d49b50 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,7 @@ +2002-11-06 David Edelsohn + + * testsuite/abi_check.cc: Add guards to prevent -mpower ICE. + 2002-11-05 Jonathan Wakely * include/std/std_sstream.h diff --git a/libstdc++-v3/testsuite/abi_check.cc b/libstdc++-v3/testsuite/abi_check.cc index c093cd507a6a..ca5281175af0 100644 --- a/libstdc++-v3/testsuite/abi_check.cc +++ b/libstdc++-v3/testsuite/abi_check.cc @@ -321,6 +321,7 @@ main(int argc, char** argv) exit(2); } +#ifndef _ARCH_PWR // Sort out names. // Assuming baseline_names, test_names are both unique w/ no duplicates. // @@ -404,6 +405,7 @@ main(int argc, char** argv) // Second, report reason or reasons incompatible. check_compatible(base, test, true); } +#endif return 0; }