Use conditional internal functions in if-conversion
[official-gcc.git] / gcc / testsuite / gcc.target / aarch64 / tst_3.c
blob3fea63357ebd8b2287a36453e16ab101e7ece2c5
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
4 int
5 f1 (int x)
7 if (x & 1)
8 return 1;
9 return x;
12 /* { dg-final { scan-assembler "(tst|ands)\t(x|w)\[0-9\]*.*1" } } */