blob: 0a9ee67ea01ee50b86fe9f3efd62cf300b6d58e3 [file] [log] [blame]
Shih-wei Liaof8fd82b2010-02-10 11:10:31 -08001// RUN: %clang_cc1 -emit-llvm -o - %s -fpascal-strings | grep "05Hello"
2
3unsigned char * Foo( void )
4{
5 static unsigned char s[256] = "\pHello";
6 return s;
7}
8