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
[LLVM][IR] Use splat syntax when printing ConstantExpr based splats. (#116856)
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
2009-03-08-ZeroEltStructCrash.c
blob
b530eb7ce1e5de2f5a7e1eefb614481c29125901
1
// RUN: %clang_cc1 -emit-llvm %s -o -
2
// PR3744
3
struct
Empty
{};
4
struct
Union
{
5
union
{
6
int
zero_arr
[
0
];
7
}
contents
;
8
};
9
static
inline
void
Foo
(
struct
Union
*
u
) {
10
int
*
array
=
u
->
contents
.
zero_arr
;
11
}
12
static void
Bar
(
struct
Union
*
u
) {
13
Foo
(
u
);
14
}