blob: 4a808512601ee3afbb5c93a6977c3c5145a9ca0a [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -emit-llvm %s -o %t &&
Chris Lattner95b851e2009-07-16 05:03:48 +00002// RUN: grep 'private constant \[10 x i8\]' %t &&
Daniel Dunbarc0489fe2009-03-02 18:50:36 +00003// RUN: not grep -F "[5 x i8]" %t &&
4// RUN: not grep "store " %t
Eli Friedman922696f2008-05-19 17:51:16 +00005
6void test(void) {
7 char a[10] = "asdf";
8 char b[10] = { "asdf" };
9}
10