Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
f94e215e4a67e5439d56a67bbe470c7860d4b9a6
/
.
/
test
/
CodeGen
/
string-init.c
blob: b2b10dcf94d432b6dca1a50c52b3053c09d5e3e4 [
file
] [
log
] [
blame
]
// RUN: clang -emit-llvm %s -o %t &&
// RUN: grep 'internal 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"
};
}