Eli Friedman | 922696f | 2008-05-19 17:51:16 +0000 | [diff] [blame^] | 1 | // RUN: clang -emit-llvm %s -o - | not grep "[5 x i8]" |
2 | // RUN: clang -emit-llvm %s -o - | not grep "store" | ||||
3 | |||||
4 | void test(void) { | ||||
5 | char a[10] = "asdf"; | ||||
6 | char b[10] = { "asdf" }; | ||||
7 | } | ||||
8 |