]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fix dumb mistakes.
authorJeff Law <law@gcc.gnu.org>
Tue, 25 May 1999 13:53:30 +0000 (07:53 -0600)
committerJeff Law <law@gcc.gnu.org>
Tue, 25 May 1999 13:53:30 +0000 (07:53 -0600)
From-SVN: r27143

gcc/testsuite/gcc.c-torture/execute/990525-2.c

index 510737955595df3eeebe9123cff948b5d673210d..749785262efc534e7eb3669aa732ade90f5e1455 100644 (file)
@@ -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 ();
 }