blob: 0a9ee67ea01ee50b86fe9f3efd62cf300b6d58e3 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -emit-llvm -o - %s -fpascal-strings | grep "05Hello"
Eli Friedman57d7dde2009-04-01 03:17:08 +00002
3unsigned char * Foo( void )
4{
5 static unsigned char s[256] = "\pHello";
6 return s;
7}
8