This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH, testsuite] Fix gcc.c-torture/execute/20101011-1.c


Committed the following as obvious after noticing failure on PowerPC.

testsuite/ChangeLog

2010-10-29  Pat Haugen <pthaugen@us.ibm.com>
        * gcc.c-torture/execute/20101011-1.c: Fix #ifdef.


Index: gcc.c-torture/execute/20101011-1.c =================================================================== --- gcc.c-torture/execute/20101011-1.c (revision 166039) +++ gcc.c-torture/execute/20101011-1.c (working copy) @@ -35,7 +35,7 @@ int k; int main () { -#ifdef DO_TEST +#if DO_TEST signal (SIGFPE, sigfpe); k = i / j; abort ();



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]