Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
3b6afbb99a1c44b4076f8e15fb7311405941b306
/
.
/
test
/
CodeGen
/
string-init.c
blob: 4a808512601ee3afbb5c93a6977c3c5145a9ca0a [
file
] [
log
] [
blame
]
// RUN: clang-cc -emit-llvm %s -o %t &&
// RUN: grep 'private constant \[10 x i8\]' %t &&
// RUN: not grep -F "[5 x i8]" %t &&
// RUN: not grep "store " %t
void
test
(
void
)
{
char
a
[
10
]
=
"asdf"
;
char
b
[
10
]
=
{
"asdf"
};
}