repo.or.cz
/
llvm
/
msp430.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PPC::B and PPC::BCC's target operand may be an immediate.
[llvm/msp430.git]
/
test
/
FrontendC
/
2007-02-04-AddrLValue.c
blob
c8b65a946f5ee52c0913f9e9ba05d6b48f0ff9b1
1
// RUN: %llvmgcc %s -O3 -S -o - -emit-llvm
2
// PR1176
3
4
typedef
struct
5
{
6
char
*
key
;
7
char
*
value
;
8
}
T1
;
9
10
typedef
struct
11
{
12
long
type
;
13
char
*
value
;
14
}
T3
;
15
16
T1 a
[] =
17
{
18
{
19
""
,
20
((
char
*)&((
T3
) {
1
, (
char
*)
1
}))
21
}
22
};
23