aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/20030703-1.c
blob: 4b45f5e574b2bcb76f74620fd288bee6a4534b6b (plain)
1
2
3
4
5
6
7
8
9
10
/* Extracted from PR target/10700.  */
/* The following code used to cause an ICE on 64-bit targets.  */

int SAD_Block(int *);
void MBMotionEstimation(int *act_block, int block)
{
    SAD_Block(act_block + (  (8 * (block == 1 || block == 3))
                          + (8 * (block == 2 || block == 3))));
}