aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/andor-2.c
blob: eacc7b1e449fcc9f5e4d422edd77c61c2d6de3ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* { dg-do compile } */
/* { dg-options "-O2 -mtune=generic" } */

int h(int x, int y)
{
  if ((x >= 0 && x <= 1) && (y >= 0 && y <= 1))
    return x && y;
  else
    return -1;
}

int g(int x, int y)
{
  if ((x >= 0 && x <= 1) && (y >= 0 && y <= 1))
    return x || y;
  else
    return -1;
}

int f(int x, int y)
{
  if (x != 0 && x != 1)
    return -2;

  else
    return !x;
}

/* { dg-final { scan-assembler-not "setne" } } */
/* { dg-final { scan-assembler-not "sete" } } */