blob: 42517b5af1e5b4bc28944729b6ea940adaaf85e6 [file] [log] [blame]
/* PR tree-optimization/21643 */
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-reassoc1-details --param logical-op-non-short-circuit=1" } */
int
f1 (unsigned char c)
{
if (c == 0x22 || c == 0x20 || c < 0x20)
return 1;
return 0;
}
int
f2 (unsigned char c)
{
if (c == 0x22 || c <= 0x20)
return 1;
return 0;
}
int
f3 (unsigned char c)
{
if (c == 0x22)
return 1;
if (c == 0x20)
return 1;
if (c < 0x20)
return 1;
return 0;
}
int
f4 (unsigned char c)
{
if (c == 0x22 || c == 0x20 || c < 0x20)
return 2;
return 0;
}
int
f5 (unsigned char c)
{
if (c == 0x22 || c <= 0x20)
return 2;
return 0;
}
int
f6 (unsigned char c)
{
if (c == 0x22)
return 2;
if (c == 0x20)
return 2;
if (c < 0x20)
return 2;
return 0;
}
int
f7 (unsigned char c)
{
if (c != 0x22 && c != 0x20 && c >= 0x20)
return 0;
return 1;
}
int
f8 (unsigned char c)
{
if (c == 0x22 && c <= 0x20)
return 0;
return 1;
}
int
f9 (unsigned char c)
{
if (c == 0x22)
return 0;
if (c == 0x20)
return 0;
if (c < 0x20)
return 0;
return 1;
}
/* Note with match being able to simplify this, optimizing range tests is no longer needed here. */
/* Equivalence: _7 | _2 -> c_5(D) <= 32 */
/* old test: dg-final scan-tree-dump-times "Optimizing range tests c_\[0-9\]*.D. -.0, 31. and -.32, 32.\[\n\r\]* into" 6 "reassoc1" */
/* { dg-final { scan-tree-dump-times "Equivalence: _\[0-9\]+ \\\| _\[0-9\]+ -> c_\[0-9\]+.D. <= 32" 5 "reassoc1" } } */
/* { dg-final { scan-tree-dump-times "Equivalence: _\[0-9\]+ \& _\[0-9\]+ -> c_\[0-9\]+.D. > 32" 1 "reassoc1" } } */