repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
2005-03-05-OffsetOfHack.c
blob
442098107504b306a6b1bd99f8a5d2d06a94414c
1
// RUN: %clang_cc1 %s -emit-llvm -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