aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/sparc/sparc-constant-1.c
blob: a882ffbf37279abeff11e6bce722c87e8b00949e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* PR optimization/10876 */

/* { dg-do compile } */

/* Verify that adding the constant 4096 is turned
   into subtracting the constant -4096. */

int foo(int a)
{
  return a+4096;
}

/* { dg-final { scan-assembler "sub" } } */