pr70669.c: Use unary minus instead of addition.

2018-11-23  Vladimir Makarov  <vmakarov@redhat.com>

	* gcc.target/powerpc/pr70669.c: Use unary minus instead of
	addition.

From-SVN: r266421
This commit is contained in:
Vladimir Makarov 2018-11-23 21:42:52 +00:00 committed by Vladimir Makarov
parent 0c3aba0cb8
commit 1b8ccb9d55
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2018-11-23 Vladimir Makarov <vmakarov@redhat.com>
* gcc.target/powerpc/pr70669.c: Use unary minus instead of
addition.
2018-11-23 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/87756

View File

@ -13,7 +13,7 @@ void foo (TYPE *p, TYPE *q)
#ifndef NO_ASM
__asm__ (" # %0" : "+r" (r));
#endif
*p = r + r;
*p = -r;
}
/* { dg-final { scan-assembler "mfvsrd" } } */