annotate gcc/testsuite/gcc.dg/lto/20091020-2_0.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children 84e7813d76e9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* { dg-lto-do link } */
kono
parents:
diff changeset
2 /* { dg-require-effective-target fpic } */
kono
parents:
diff changeset
3 /* { dg-lto-options {{-fPIC -r -nostdlib -flto}} } */
kono
parents:
diff changeset
4
kono
parents:
diff changeset
5 typedef struct {
kono
parents:
diff changeset
6 int NumPackStreams;
kono
parents:
diff changeset
7 } CSzAr;
kono
parents:
diff changeset
8 typedef struct {
kono
parents:
diff changeset
9 CSzAr db;
kono
parents:
diff changeset
10 } CSzArEx;
kono
parents:
diff changeset
11 int SzArEx_Init(CSzArEx *p)
kono
parents:
diff changeset
12 {
kono
parents:
diff changeset
13 return p->db.NumPackStreams;
kono
parents:
diff changeset
14 }
kono
parents:
diff changeset
15 int SzArEx_GetFolderFullPackSize(const CSzArEx *p)
kono
parents:
diff changeset
16 {
kono
parents:
diff changeset
17 return p->db.NumPackStreams;
kono
parents:
diff changeset
18 }
kono
parents:
diff changeset
19