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
/
2004-01-01-UnknownInitSize.c
blob
25ddebddccb06dd068d93551bec928a7a1dbd304
1
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3
/*
4
* This regression test ensures that the C front end can compile initializers
5
* even when it cannot determine the size (as below).
6
*/
7
struct
one
8
{
9
int
a
;
10
int
values
[];
11
};
12
13
struct
one hobbit
= {
5
, {
1
,
2
,
3
}};
14