Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / pr64015.c
blobdaf839351d7761f63caadfeb2d7d9bd4c93f487a
1 /* { dg-do compile } */
2 /* { dg-options "-O2 " } */
4 int
5 test (unsigned short a, unsigned char b)
7 return a > 0xfff2 && b > 252;
10 /* { dg-final { scan-assembler "ccmp" { target aarch64*-*-* } } } */