8-02a.c: Fix typo.
authorJanis Johnson <janis187@us.ibm.com>
Fri, 23 Jul 2004 18:27:57 +0000 (18:27 +0000)
committerJanis Johnson <janis@gcc.gnu.org>
Fri, 23 Jul 2004 18:27:57 +0000 (18:27 +0000)
2004-07-23  Janis Johnson  <janis187@us.ibm.com>

* gcc.dg/vmx/8-02a.c: Fix typo.

From-SVN: r85088

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/vmx/8-02a.c

index 7e6a5ea3d38081225eed43f47e20eae68586e451..512ac8ec2390533211287ef4d0ee54c0cdfe9398 100644 (file)
@@ -1,5 +1,7 @@
 2004-07-23  Janis Johnson  <janis187@us.ibm.com>
 
+       * gcc.dg/vmx/8-02a.c: Fix typo.
+
        * gcc.dg/vmx/varargs-4.c: Remove a Darwin-specific check.
        * gcc.dg/darwin-abi-3.c: New test.
 
index 34f73878051aad320750c68c4c08e064ba97f219..cbea6ca6ba21fde75ce416ca96df10a72dc014c2 100644 (file)
@@ -13,5 +13,5 @@ static void test()
   int i_p16v = vec_step(p16v);
   int i_p16c_ = vec_step(p16c_);
   int i_p16v_ = vec_step(p16v_);
-  check((i_p16 + i_p16c + i_p16v + i_p16c_ + i_p16v_) != 40, "vec_step");
+  check((i_p16 + i_p16c + i_p16v + i_p16c_ + i_p16v_) == 40, "vec_step");
 }