aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/arm/negscc_restrict_it.c
blob: b24c6ece7271dc4cfbb718155841282ff8f63bf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* { dg-do run } */
/* { dg-require-effective-target arm_thumb2_ok } */
/* { dg-options "-mthumb -O2 -mrestrict-it" }  */

__attribute__ ((noinline, noclone)) int
fn1 (int a, int b)
{
  return (a == b ? 0 : -1);
}

int
main (void)
{
  if (fn1 (3, 3) != 0)
    __builtin_abort ();

  if (fn1 (6, 7) != -1)
    __builtin_abort ();
}