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
This commit is contained in:
Christian Groessler 2018-05-21 22:42:35 +00:00 committed by Jeff Law
parent c05fb6457a
commit 7157e92582
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
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

View file

@ -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);
}