| Argyrios Kyrtzidis | 874f608 | 2008-06-12 12:44:52 +0000 | [diff] [blame] | 1 | // RUN: clang -emit-llvm %s -o - | not grep -F "[5 x i8]" && |
| Eli Friedman | 922696f | 2008-05-19 17:51:16 +0000 | [diff] [blame] | 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 | |||||