aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/sparc/setcc-10.c
blob: 7d75e48b74133d6bbb0c0f6973690e08eedcfa7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* { dg-do compile } */
/* { dg-require-effective-target lp64 } */
/* { dg-options "-O1 -msubxc" } */

long foo2 (long a, long i)
{
  return a - (i != 0);
}

long foo4 (long a, long b, long i)
{
  return a - b - (i != 0);
}

long foo5 (long a, long i)
{
  return a + (i == 0);
}

/* { dg-final { scan-assembler-times "subxc\t%" 3 } } */
/* { dg-final { scan-assembler-times "cmp\t%" 3 } } */
/* { dg-final { scan-assembler-not "add\t%" } } */
/* { dg-final { scan-assembler-not "sub\t%" } } */