aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/aarch64/cmn-neg2.c
blob: ca45a53435f9cbdbd160f3133af1bcc73329f952 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* { dg-do run } */
/* { dg-options "-O2 --save-temps" } */

extern void abort (void);

/* It's unsafe to use CMN in these comparisons.  */

void __attribute__ ((noinline))
foo_s32 (int a, int b)
{
  if (a < -b)
    abort ();
}

void __attribute__ ((noinline))
foo_s64 (unsigned long long a, unsigned long long b)
{
  if (a > -b)
    abort ();
}


int
main (void)
{
  int a = 30;
  int b = 42;
  foo_s32 (a, b);
  foo_s64 (a, b);
  return 0;
}
/* { dg-final { scan-assembler-not "cmn\t" } } */

/* { dg-final { cleanup-saved-temps } } */