OSDN Git Service

* doc/invoke.texi (-fshrink-wrap): Document.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / sparc / sparc-constant-1.c
1 /* PR optimization/10876 */
2
3 /* { dg-do compile } */
4
5 /* Verify that adding the constant 4096 is turned
6    into substracting the constant -4096. */
7
8 int foo(int a)
9 {
10   return a+4096;
11 }
12
13 /* { dg-final { scan-assembler "sub" } } */