Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
566abee1e9828a7700b51e4d17ea08234fde3bb4
/
.
/
test
/
CodeGen
/
string-init.c
blob: 0cb6afff611d574a404c54b6edcb0276b28134d2 [
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"
};
}