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++.old-deja
/
g++.other
/
lookup3.C
blob
a2946b7b07c29ce49fb815c4ff367eda186b8ae6
1
// { dg-do run }
2
// Test to make sure that the use of __typeof__ in WIFEXITED works.
3
4
int main ()
5
{
6
int stat_loc = 0;
7
(__extension__
8
({
9
union
10
{
11
__typeof__ (stat_loc) __in;
12
int __i;
13
} __u;
14
__u.__in = (stat_loc);
15
__u.__i;
16
})
17
);
18
}