aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/mips/octeon-seq-1.c
blob: c07660a2e66ee1f231cd979fe91546fd0c689f80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* Check if we expand seq and sne.  */

/* { dg-do compile } */
/* { dg-options "-march=octeon" } */
/* { dg-final { scan-assembler-times "\tseq\t|\tseqi\t" 4 } } */
/* { dg-final { scan-assembler-times "\tsne\t|\tsnei\t" 4 } } */

#define TEST(N, LHS, REL, RHS) \
  NOMIPS16 int f##N (int a, int b) { return LHS REL RHS; }

TEST (0, a, ==, b);
TEST (1, a, ==, 23);
TEST (2, a, ==, 511);
TEST (3, a, ==, -200);

TEST (10, a, !=, b);
TEST (11, a, !=, 1);
TEST (12, a, !=, 350);
TEST (13, a, !=, -512);