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
2008-01-25 Douglas Gregor <doug.gregor@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
20020530-1.c
blob
b2d0ecda511444d993146a8dd23faeb15dafeae6
1
/* PR c/6809
2
Test -fverbose-asm with unnamed fields. */
3
/* { dg-do compile } */
4
/* { dg-options "-fverbose-asm" } */
5
6
typedef
union
U
7
{
8
struct
9
{
10
unsigned int
a
;
11
int
b
;
12
};
13
long long
c
;
14
} *
T
;
15
16
int
foo
(
T x
)
17
{
18
int
r
=
x
->
a
+
x
->
b
;
19
return
r
;
20
}