summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/pr65167.c
blob: 64cc7aef520af731c1e004e7269b24e08dda1a5b (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile { target { ! x32 } } } */
/* { dg-options "-O -fschedule-insns -fcheck-pointer-bounds -mmpx" } */

void bar(int *a, int *b, int *c, int *d, int *e, int *f);

int foo (int *a, int *b, int *c, int *d, int *e, int *f)
{
  bar (a, b, c, d, e, f);
  return *f;
}