libstdc++: Move gcc.gnu.org and sourceware.org links to https
[official-gcc.git] / gcc / testsuite / gcc.target / arm / thumb-ltu.c
blob5ec321b9639fda52a844d656af8c3235eebe8942
1 /* { dg-do compile } */
2 /* { dg-skip-if "-mpure-code supports M-profile only" { *-*-* } { "-mpure-code" } } */
3 /* { dg-require-effective-target arm_thumb1_ok } */
4 /* { dg-options "-mcpu=arm1136jf-s -mthumb -O2" } */
6 extern int foo ();
7 extern int bar ();
9 void f(unsigned a, unsigned b, unsigned c, unsigned d)
11 if (a <= b || c > d)
12 foo();
13 else
14 bar();
17 /* { dg-final { scan-assembler-not "uxtb" } } */