* config/i386/avx512fintrin.h (_mm512_set_epi16, _mm512_set_epi8,
[official-gcc.git] / gcc / testsuite / gcc.target / aarch64 / noplt_3.c
bloba38261845495f8edf3b5deb1f5f2c8fc9682fc5e
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fpic -fno-plt" } */
3 /* { dg-skip-if "-mcmodel=large, no support for -fpic" { aarch64-*-* } { "-mcmodel=large" } { "" } } */
5 int dec (int);
7 int
8 cal (int a)
10 return dec (a);
13 void
14 cal_novalue (int a)
16 dec (a);
19 /* { dg-final { scan-assembler-times "br\t" 2 } } */
20 /* { dg-final { scan-assembler-not "b\t" } } */