Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
68617fd6b322c6335dc0d72d828b7a2338b52fad
/
.
/
test
/
CodeGen
/
string-init.c
blob: 1d1a740faac266ffe3670ae316e64cd1cfc01ccb [
file
] [
log
] [
blame
]
// RUN: clang -emit-llvm %s -o - | not grep "[5 x i8]"
// RUN: clang -emit-llvm %s -o - | not grep "store"
void
test
(
void
)
{
char
a
[
10
]
=
"asdf"
;
char
b
[
10
]
=
{
"asdf"
};
}