Files
clang-p2996/clang/test/CodeGen/string-init.c
Argyrios Kyrtzidis caec17eab9 Fix broken test.
llvm-svn: 52232
2008-06-12 12:44:52 +00:00

9 lines
185 B
C

// 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" };
}