re PR target/39715 ([cond-optab] extra sign extensions on Thumb)
[official-gcc.git] / gcc / testsuite / gcc.target / arm / thumb-ltu.c
blob899b8d23194ae4afa810827c58c58c31d01faf0b
1 /* { dg-do compile } */
2 /* { dg-options "-mcpu=arm1136jf-s -mthumb -O2" } */
4 void f(unsigned a, unsigned b, unsigned c, unsigned d)
6 if (a <= b || c > d)
7 foo();
8 else
9 bar();
12 /* { dg-final { scan-assembler-not "uxtb" } } */