Commit 7157e925 by Christian Groessler Committed by Jeff Law

simd-5.c: Fix comment.

2018-05-21  Christian Groessler  <chris@groessler.org>

	* gcc.c-torture/compile/simd-5.c: Fix comment.

From-SVN: r260491
parent c05fb645
2018-05-21 Christian Groessler <chris@groessler.org>
* gcc.c-torture/compile/simd-5.c: Fix comment.
2018-05-21 Michael Meissner <meissner@linux.ibm.com>
PR target/85657
......
......@@ -6,7 +6,7 @@ main(){
vector64 int a = {1, -1};
vector64 int b = {2, -2};
c = -a + b*b*(-1LL);
/* c is now {5, 3} */
/* c is now {-5, -3} */
printf("result is %llx\n", (long long)c);
}
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