Use gather loads for strided accesses
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / chkp-hidden-def.c
blob68f70ff258de228225f13ff85c9f6506e0b1dc2e
1 /* { dg-do compile { target { ! x32 } } } */
2 /* { dg-require-alias "" } */
3 /* { dg-options "-fcheck-pointer-bounds -mmpx -O2" } */
4 /* { dg-final { scan-assembler-not "test.chkp" } } */
6 int test (int *p);
7 extern __typeof (test) test __asm__ ("" "__test") __attribute__ ((visibility ("hidden")));
9 int test (int *p)
11 return *p;
14 extern __typeof (test) __test1 __asm__("" "test");
15 extern __typeof (test) __test1 __attribute__((alias ("" "__test")));