1 // RUN: %clang_cc1 -emit-llvm -o %t %s
2 // RUN: grep "hello" %t | count 3
3 // RUN: grep 'c"hello\\00"' %t | count 2
4 // RUN: grep 'c"hello\\00\\00\\00"' %t | count 1
5 // RUN: grep 'c"ola"' %t | count 1
7 /* Should be 3 hello string, two global (of different sizes), the rest
15 static char *x
= "hello";
20 static char x
[] = "hello";
25 static char x
[8] = "hello";