summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/mips/octeon-cins-1.c
blob: ac85e23784640268aecbca43d81c5a8e63dd34b2 (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
/* { dg-do compile } */
/* The tests also work with -mgp32.  For long long tests, only one of
   the 32-bit parts is used.  */
/* { dg-options "-O -march=octeon" } */
/* { dg-final { scan-assembler-times "\tcins\t" 3 } } */
/* { dg-final { scan-assembler-not "\tandi\t|sll\t" } } */

NOMIPS16 long long
f (long long i)
{
  return (i & 0xff) << 34;
}

NOMIPS16 int
g (int i)
{
  return (i << 4) & 0xff0;
}

NOMIPS16 long long
h (long long i)
{
  return (i << 4) & 0xfff;
}