From: Jeff Law Date: Tue, 25 May 1999 13:53:30 +0000 (-0600) Subject: Fix dumb mistakes. X-Git-Tag: releases/libgcj-2.95.0~375 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c9b2595a777d4f39268ec960c9264f310a642f5d;p=thirdparty%2Fgcc.git Fix dumb mistakes. From-SVN: r27143 --- diff --git a/gcc/testsuite/gcc.c-torture/execute/990525-2.c b/gcc/testsuite/gcc.c-torture/execute/990525-2.c index 510737955595..749785262efc 100644 --- a/gcc/testsuite/gcc.c-torture/execute/990525-2.c +++ b/gcc/testsuite/gcc.c-torture/execute/990525-2.c @@ -11,11 +11,11 @@ int func1() if (test.v[0] != 10) abort (); - if (test.v[0] != 20) + if (test.v[1] != 20) abort (); - if (test.v[0] != 30) + if (test.v[2] != 30) abort (); - if (test.v[0] != 40) + if (test.v[3] != 40) abort (); }