This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
wrong comment in gcc/testsuite/gcc.c-torture/compile/simd-5.c
- From: Christian Groessler <chris at groessler dot org>
- To: gcc at gcc dot gnu dot org
- Date: Wed, 2 May 2018 12:49:18 +0200
- Subject: wrong comment in gcc/testsuite/gcc.c-torture/compile/simd-5.c
Hi,
--- a/gcc/testsuite/gcc.c-torture/compile/simd-5.c
+++ b/gcc/testsuite/gcc.c-torture/compile/simd-5.c
@@ -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);
}
regards,
chris