re PR rtl-optimization/81020 (wrong code with -O -fno-tree-bit-ccp -fno-tree-coalesce-vars -fno-tree-vrp)
PR rtl-optimization/81020 * gcc.dg/pr81020.c: New test. From-SVN: r255193
This commit is contained in:
parent
9e851845f6
commit
3c88da0dd4
@ -1,5 +1,8 @@
|
||||
2017-11-28 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR rtl-optimization/81020
|
||||
* gcc.dg/pr81020.c: New test.
|
||||
|
||||
PR tree-optimization/80788
|
||||
* gcc.dg/pr80788.c: New test.
|
||||
|
||||
|
||||
23
gcc/testsuite/gcc.dg/pr81020.c
Normal file
23
gcc/testsuite/gcc.dg/pr81020.c
Normal file
@ -0,0 +1,23 @@
|
||||
/* PR rtl-optimization/81020 */
|
||||
/* { dg-do run } */
|
||||
/* { dg-options "-O -fno-tree-bit-ccp -fno-tree-coalesce-vars -fno-tree-vrp" } */
|
||||
|
||||
unsigned v = 4;
|
||||
|
||||
unsigned long long __attribute__((noipa))
|
||||
foo (unsigned x)
|
||||
{
|
||||
unsigned a = v;
|
||||
a &= 1;
|
||||
x |= 0 < a;
|
||||
a >>= 31;
|
||||
return x + a;
|
||||
}
|
||||
|
||||
int
|
||||
main ()
|
||||
{
|
||||
if (foo (2) != 2)
|
||||
__builtin_abort ();
|
||||
return 0;
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user