Commit c7bb2a03 by Janis Johnson Committed by Janis Johnson

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
parent b9eef878
2004-07-23 Janis Johnson <janis187@us.ibm.com> 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/vmx/varargs-4.c: Remove a Darwin-specific check.
* gcc.dg/darwin-abi-3.c: New test. * gcc.dg/darwin-abi-3.c: New test.
......
...@@ -13,5 +13,5 @@ static void test() ...@@ -13,5 +13,5 @@ static void test()
int i_p16v = vec_step(p16v); int i_p16v = vec_step(p16v);
int i_p16c_ = vec_step(p16c_); int i_p16c_ = vec_step(p16c_);
int i_p16v_ = vec_step(p16v_); 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");
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment