Add documentation for musttail attribute
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / avoid-indexed-addresses.c
blobe86aa8a5d2f0d891811c001dc5980596423c842c
1 /* { dg-do compile { target { powerpc*-*-* } } } */
2 /* { dg-options "-O2 -mavoid-indexed-addresses -mno-altivec -mno-vsx" } */
4 /* { dg-final { scan-assembler-not "lbzx" } }
6 /* Ensure that an indexed load is not generated with
7 -mavoid-indexed-addresses. */
9 char
10 do_one (char *base, unsigned long offset)
12 return base[offset];