aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/string-init.c
blob: f3ad4c51ee870c6bfbe441ee30a04f584bb93ed2 (plain)
1
2
3
4
5
6
7
8
// RUN: clang -emit-llvm %s -o - | not grep -F "[5 x i8]" &&
// RUN: clang -emit-llvm %s -o - | not grep "store"

void test(void) {
  char a[10] = "asdf";
  char b[10] = { "asdf" };
}