comparison gcc/testsuite/gcc.dg/lto/20090210_1.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 /* { dg-options "-fPIC" { target { ! sparc*-*-* } } } */
2 static void
3 f (int n)
4 {
5 int i;
6 static int __thread value = 100;
7 for (i = 0; i < n; ++i)
8 {
9 volatile int *p = &value;
10 volatile int x __attribute__ ((unused)) = *p;
11 }
12 }
13
14
15 extern int foo (int);
16
17 int
18 main (int argc, char **argv)
19 {
20 f (foo (4) + argc);
21 return 0;
22 }