repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
init
/
struct3.C
blob
53804b3d1533ae82a2a2ff1a394cdb58f98c2a8b
1
/* PR c++/23180. */
2
/* Initialize a global variable with an expression that attempts to use
3
pointer arithmetic to calculate a structure field offset. */
4
5
struct Track {
6
char soundName[15];
7
};
8
9
struct SaveLoadEntry {
10
int offs;
11
int type;
12
int size;
13
};
14
15
int foobar = ((long) (__SIZE_TYPE__) (& ((Track *) 42)->soundName[0])) - 42;