aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/sh/pr54089-3.c
blob: abdb021cade38cc08986a7bd1454cf2e7802db55 (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
31
32
33
34
35
36
37
38
39
40
/* The dynamic shift library functions truncate the shift count to 5 bits.
   Verify that this is taken into account and no extra shift count
   truncations are generated before the library call.  */
/* { dg-do compile }  */
/* { dg-options "-O1" } */
/* { dg-skip-if "" { "sh*-*-*" } { "*" } { "-m1*" "-m2" "-m2e*" } } */
/* { dg-final { scan-assembler-not "and" } } */
/* { dg-final { scan-assembler-not "#31" } } */

int
test00 (unsigned int a, int* b, int c, int* d, unsigned int e)
{
  int s = 0;
  int i;
  for (i = 0; i < c; ++i)
    s += d[i] + b[i] + (e << (i & 31));
  return s;  
}

int
test01 (unsigned int a, int* b, int c, int* d, unsigned int e)
{
  int s = 0;
  int i;
  for (i = 0; i < c; ++i)
    s += d[i] + b[i] + (e >> (i & 31));
  return s;  
}

int
test03 (unsigned int a, unsigned int b)
{
  return b << (a & 31);
}

unsigned int
test04 (unsigned int a, int b)
{
  return a >> (b & 31);
}