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
/
2005-03-05-OffsetOfHack.c
blob
8df7231df6aced1769b7add0077bf71173797f0b
1
// RUN: %llvmgcc %s -S -o -
2
3
struct
s
{
4
unsigned long int
field
[
0
];
5
};
6
7
#define OFFS \
8
(((char *) &((struct s *) 0)->field[0]) - (char *) 0)
9
10
int
foo
[
OFFS
];
11
12