OSDN Git Service

PR middle-end/29274
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / arm / thumb-ltu.c
1 /* { dg-do compile } */
2 /* { dg-options "-mcpu=arm1136jf-s -mthumb -O2" } */
3
4 void f(unsigned a, unsigned b, unsigned c, unsigned d)
5 {
6   if (a <= b || c > d)
7     foo();
8   else
9     bar();
10 }
11
12 /* { dg-final { scan-assembler-not "uxtb" } } */