blob: ac85e23784640268aecbca43d81c5a8e63dd34b2 [file] [log] [blame]
/* { 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;
}