8-02a.c: Fix typo.

2004-07-23  Janis Johnson  <janis187@us.ibm.com>

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

From-SVN: r85088
This commit is contained in:
Janis Johnson 2004-07-23 18:27:57 +00:00 committed by Janis Johnson
parent b9eef87830
commit c7bb2a0348
2 changed files with 3 additions and 1 deletions

View 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.

View 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");
}